Android EditText 值转为整数

发布于 2024-10-03 07:26:14 字数 134 浏览 2 评论 0原文

我正在创建一个抵押计算器 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉生梦死 2024-10-10 07:26:14
Integer i = Integer.valueOf(String s);

您还应该将 EditText 配置为仅接受整数值。

Integer i = Integer.valueOf(String s);

You should also configure the EditText to only accept integer values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文