Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Displaying integer on toast

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!

like image 957
Gal Israel Avatar asked Dec 03 '22 17:12

Gal Israel


1 Answers

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();.

like image 79
Mena Avatar answered Dec 15 '22 02:12

Mena