How to display Toast at center of screen

后端 未结 8 1795
北荒
北荒 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:34

    To display the Toast in center of the screen.

    Toast toast = Toast.makeText(test.this,"bbb", Toast.LENGTH_LONG);
    toast.setGravity(Gravity.CENTER, 0, 0);
    toast.show();
    

提交回复
热议问题