How to Customise Toast in Android?

前端 未结 6 523
礼貌的吻别
礼貌的吻别 2021-01-05 05:06

Is it possible to make Customize Toast in Android. like if can we place in it image icon and place button.

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-05 05:41

    toast can be customized to show at different places like top, bottom, center, left, right

     toast.setGravity(Gravity.TOP , 0, 0); // for example setting gravity to top
    

    for more details [here](http://androidcoding.in/2016/05/31/android-tutorial-custom-toast/"android custom toast")

提交回复
热议问题