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 following code can be used to display Toast message
Toast tt = Toast.makeText(MainActivity.this,"Your text displayed here", Toast.LENGTH_LONG); tt.setGravity(Gravity.CENTER, 0, 0); tt.show();