Reputation: 221
Is it possible set a hint for the button in android?
Upvotes: 5
Views: 7954
Reputation: 780
You can also drg and drop onto your GUI and right click on the button, and select hint.
Upvotes: 0
Reputation: 9514
The hint property is only taken into account as a default substitute if the Button text is absent. It is not a real "tooltip" as in HTML title attribute you can see when you hover over an element.
Upvotes: 5
Reputation: 8533
Yes myButton.setHint
in code or android:hint
in XML. A Button
inherits them from TextView
.
Upvotes: 3