Hi I have a text view and I'm trying to make the text selectable. The docs say:
and I get
The method setTextIsSelectable(boolean) is undefined for the type TextView
I tried
in the xml and I get
No resource identifier found for attribute 'textIsSelectable' in package 'android'
What's going on? I'm baffled!
Regards
But I can't get it to work I triedUse setTextIsSelectable(boolean) or the TextView_textIsSelectable XML attribute to make this TextView selectable
Code:
Tv.setTextIsSelectable(true);
The method setTextIsSelectable(boolean) is undefined for the type TextView
I tried
Code:
android:textIsSelectable="true"
No resource identifier found for attribute 'textIsSelectable' in package 'android'
What's going on? I'm baffled!
Regards