Android EditText 值转为整数
我正在创建一个抵押计算器 Android 程序,我试图弄清楚如何获取 EditText 值(作为可编辑返回)以转换为整数,以便我可以在抵押计算中使用这些整数。我知道有一个 toString() 方法。这是一种可行的方法,然后尝试将其从字符串转换为整数吗?
I am creating a mortgage calculator android program and I was trying to figure out how to get the EditText value (comes back as an Editable) to convert to an integer so I can use those integers in the calculation of the mortgage. I know that there is a toString() method. Would that be the way to go and then try to convert it from a String to an integer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还应该将 EditText 配置为仅接受整数值。
You should also configure the EditText to only accept integer values.