I'm very new to Android and I have some doubts.
I have a TextView
:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go Back" />
how come I make the text Go Back
look like clickable one? I'm asking in terms of look and feel. TextView
should be shown as clickable as how Button
getting rendered.
Thanks in advance.