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();
Toast toast = new Toast(context); toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.BOTTOM, 0, 0); toast.show();