java.lang.NumberFormatException: Invalid int: code example
Example 1: java.lang.NumberFormatException: For input string: "0.01""
Long.valueOf("0.01"");
Example 2: Caused by: java.lang.NumberFormatException: Invalid int: ""
final String height = e1.getText().toString();
final int a = Integer.parseInt(height);