Displaying integer on toast

前端 未结 4 1257
别跟我提以往
别跟我提以往 2020-11-29 12:04

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();
相关标签:
4条回答
  • 2020-11-29 12:12

    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

    0 讨论(0)
  • 2020-11-29 12:19

    Try this to "cast" bignum to string:

    Toast.makeText(this,"" + bignum,Toast.LENGTH_LONG).show();
    
    0 讨论(0)
  • 2020-11-29 12:19

    You can do this:

    Toast.makeText(getBaseContext(), "" + bignum, Toast.LENGTH_LONG).show();
    
    0 讨论(0)
  • 2020-11-29 12:34

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

    0 讨论(0)
提交回复
热议问题