-2

I am developing an application and in homepage it should show the hint about the button as shown in image. But i don't have idea. If any one knows help me. Below is the image what i am looking. image

Hamid Shatu
  • 9,664
  • 4
  • 30
  • 41
Narendra Kumar
  • 551
  • 5
  • 16
  • 2
    u can use [ShowcaseView](https://github.com/amlcurran/ShowcaseView) – Kaushik Dec 24 '14 at 07:22
  • it may help you, http://stackoverflow.com/questions/10216937/how-do-i-create-a-help-overlay-like-you-see-in-a-few-android-apps-and-ics – Suren Dec 24 '14 at 09:33
  • Refer the below link, http://stackoverflow.com/questions/21031488/android-popupwindow-with-tooltip-arrow – Suren Dec 24 '14 at 09:35

1 Answers1

0

If I understood your question correctly then you simply have to add title to the menu item .

 <item
    android:id="@+id/skip_btn"
    android:orderInCategory="1"
    android:icon="@drawable/ic_skip_btn"
    android:showAsAction="always"
    android:title="@string/skip_text"/>

Title mentioned will be shown when the user long presses the skip icon.

user2781627
  • 455
  • 5
  • 17