Displaying integer on toast

微笑、不失礼 提交于 2019-11-26 09:55:27

问题


Im trying to display a toast message with integer inside it This is how i tried to do it:

 Toast.makeText(this,bignum,Toast.LENGTH_LONG).show();

But it keeps crash my app. Thanks for help!


回答1:


Toast.makeText either takes a CharSequence or an int as its second argument.

However, the int represents a resource ID (such as R.string.hello_world).

The application crashes probably because no resource is found with that ID, since it's not an ID to start with, but an arbitrary integer.

In your case, use Toast.makeText(this,String.valueOf(bignum),Toast.LENGTH_LONG).show();.




回答2:


you need a String

Toast.makeText(this, String.valueOf(bignum),Toast.LENGTH_LONG).show();

otherwise android will try to look it up for a String with id bignum, in your strings.xml file




回答3:


Try this to "cast" bignum to string:

Toast.makeText(this,"" + bignum,Toast.LENGTH_LONG).show();



回答4:


You can do this:

Toast.makeText(getBaseContext(), "" + bignum, Toast.LENGTH_LONG).show();


来源:https://stackoverflow.com/questions/28152958/displaying-integer-on-toast

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!