Search code examples
androidtoast

Toast width doesnt match its content


My code:

Toast.makeText(this, "انتهای کتاب", Toast.LENGTH_SHORT).show();

Result (on eclipse emulator, android2.2):

enter image description here


Solution

  • Try to use this:

    Toast.makeText(getApplicationContext(), "انتهای کتاب", Toast.LENGTH_SHORT).show();