I have ListActivity in Android. Each line is simply an element that triggers another action using some resource. By default, this is of course TextView.
I would like (and "I would like", I mean "client insists") that the TextView will look like a button. If I actually make them buttons, the default click handler does not work anymore, even if they are not subject to focus - so I need to write code to manually inflate the view containing the button and set the click handler.
Is there any way I can just make a TextView look like a Button without any action with a Button?
user79758
source
share