How to display Toast at center of screen

后端 未结 8 1956
北荒
北荒 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

    The below code worked for me.

    Toast.makeText(this, "Toast in center", Toast.LENGTH_SHORT).setGravity(Gravity.CENTER,0,0).show();
    

提交回复
热议问题