Show toast widget underneath a view

后端 未结 6 1770
别那么骄傲
别那么骄傲 2020-11-29 12:05

For those who helped me out earlier regarding this project, thank you very much! My code no longer has any problems, and I made extra tweaks. Now that the app is actually ro

6条回答
  •  無奈伤痛
    2020-11-29 12:46

    From developer guide, you can position your Toast using toast.setGravity(). I find this on http://developer.android.com/guide/topics/ui/notifiers/toasts.html

    Positioning your Toast A standard toast notification appears near the bottom of the screen, centered horizontally. You can change this position with the setGravity(int, int, int) method. This accepts three parameters: a Gravity constant, an x-position offset, and a y-position offset.

    For example, if you decide that the toast should appear in the top-left corner, you can set the gravity like this:

    toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0); If you want to nudge the position to the right, increase the value of the second parameter. To nudge it down, increase the value of the last parameter.

    I think you can get position of your button and forward it to mentioned method

提交回复
热议问题