Markus Taubek
Newbie
Hello,
I want a Menu with Textview to click it and react.
There is my TextView:
There is my listener method:
But If I click on the Text, it is not call my method.
The same method is working with a <button> tag
but not with my TextView.
Anybody an idea?
greets
Markus
I want a Menu with Textview to click it and react.
There is my TextView:
Code:
<TextView
android:layout_width="fill_parent"
android:layout_height="40px"
android:text="MyLink"
android:onClick="onClickMyLink"
android:textColor="@color/white"
android:padding="8px"
style="@style/home_menu"/>
There is my listener method:
Code:
public void onClickMyLink(final View sfNormal) {
But If I click on the Text, it is not call my method.
The same method is working with a <button> tag
but not with my TextView.
Anybody an idea?
greets
Markus