标签: android try-catch android-edittext
我想从2输入(2 EditText)计算,EditText中的值只接收int。 如何编码?
答案 0 :(得分:1)
尝试将android:numeric =“decimal”添加到EditText
答案 1 :(得分:0)
使用int myInt = Integer.parseInt(“55”); 其中55是在edittext中输入的文本。 如果它是文本中的整数,它将起作用;否则,如果无法将字符串解析为整数值,则会抛出NumberFormatException。