How to display Toast at center of screen

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

    Toast toast = new Toast(context);
            toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.BOTTOM, 0, 0);
    toast.show();
    

提交回复
热议问题