如何在EditText中添加整数值?
我想使用整数变量表示的值作为 Edittext
中 setText
函数的参数。
但是,应用程序与此数据类型不兼容,因为 TextView
包含字符串类型,而值是整数类型。
这是一个示例:
int value1 = extras.getInt("genscore");
System.out.println("ammm"+value1);
EditText edittext=(EditText)findViewById(R.id.editTextHighScore);
edittext.setText("I am here"); //This is working fine
edittext.setText(value1); //value1 is integer.
如何正确使用以整数作为参数的 setText
函数?
I want to use the value represented by an integer variable as a parameter to the setText
function within Edittext
.
However, the application is incompatible with this data type as TextView
contains string type and value is an integer type.
Here is an example of this:
int value1 = extras.getInt("genscore");
System.out.println("ammm"+value1);
EditText edittext=(EditText)findViewById(R.id.editTextHighScore);
edittext.setText("I am here"); //This is working fine
edittext.setText(value1); //value1 is integer.
How can I correctly use the setText
function with an integer as its parameter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个:-
just try this:-
像这样使用
use like this
你可以走了
and you are good to go