How to display Toast at center of screen

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

    In Xamarin.Android, this displays toast at center of screen:

                Toast toast = Toast.MakeText(ApplicationContext, "bbb", ToastLength.Long);
                toast.SetGravity(GravityFlags.Center, 0, 0);
                toast.Show();
    

提交回复
热议问题