I have a TextView with the following XML (it's the only thing in the view):
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ipg_display"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="textview"
android:scrollbars = "vertical"
android:fillViewport = "true" android:clickable="false"/>
The problem I'm having is that when the text view is clicked by the user (to drag through it or whatever), the text changes color slightly as if the view is being "clicked". How do I disable this?
I was hoping that settings "clickable" to false would solve the issue, but no luck :(
What am I missing?