How to display Toast at center of screen

后端 未结 8 1829
北荒
北荒 2021-01-30 09:48

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();
8条回答
  •  醉酒成梦
    2021-01-30 10:30

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

提交回复
热议问题