Zohab Ali
Zohab Ali

Reputation: 9564

How to show popup above a specific button in android

I have to show a popup like this above a button

enter image description here

How I can show it? I have been looking into it but still unable to find any way to implement it

Upvotes: 0

Views: 180

Answers (1)

Hades
Hades

Reputation: 46

  1. Computes the coordinates of button on the screen.
  2. Create custom layout above using PopupWindow
popupWindow.showAtLocation(button, Gravity.CENTER, 0, 0);

You can refer the answer here

Upvotes: 1

Related Questions