How to add hint for an imageview

2.9k Views Asked by At

I need to add hint text for next and previous Image View in android app,how can i do it.There is no attribute like hint in image view. I have 2 images and need to show hint when user tries to click on those images

1

There are 1 best solutions below

0
On

Starting with Android API 14+, there is an event for hovering. You can do,

view.setOnHoverListener(...)

and listen for MotionEvents such as ACTION_HOVER_ENTER and ACTION_HOVER_EXIT, instead of onLongClick.