In Android I want to display a toast message at the bottom of the screen, I tried this:
Toast.makeText(test.this,\"bbb\", Toast.LENGTH_LONG).show();
The below code worked for me.
Toast.makeText(this, "Toast in center", Toast.LENGTH_SHORT).setGravity(Gravity.CENTER,0,0).show();