I currently have a homescreen with three buttons. I would like to add a small button on the side of each button that when clicked would pop up a some sort of pop-up, that would explain the functionality of each button. Is there a built-in function for this? Or is this more like a tool-tip? Thank you
Asked
Active
Viewed 1,778 times
0
-
You could simply use `ImageButton` in the side of each button – BOUTERBIAT Oualid Jun 28 '16 at 13:54
-
@TheLearner Check this question out (Tooltip) http://stackoverflow.com/questions/21031488/android-popupwindow-with-tooltip-arrow – Shank Jun 28 '16 at 14:25
-
@Shank Thank you! I believe this is what I needed. – TheLearner Jun 28 '16 at 14:41
1 Answers
0
You can use Android AlertDialog Box. Android provides default alert box and you can also make you own custom alert box. Just put dialog box in your help button onClick event.
Reference :

Shank
- 1,387
- 11
- 32
-
Thank you this looks like a great option. Do you also know if this is possible with a tool tip? – TheLearner Jun 28 '16 at 14:16
-