I have a Listview in my application. Listview rows can be clicked. I entered a search string in each line of the list. Despite the android: clickable = "false" settings for Seekbar in the xml layout, I can still click on it and move the search bar as desired. I don't want the Seekbar to be a click, but I need the Listview row to be clicked.
Any pointers would be appreciated.
Here is my layout file
android:progressDrawable="@drawable/slider_range"
android:thumb="@drawable/slider_thumb"
android:layout_width="80dip"
android:layout_height="12dip"
android:focusable="false"
android:clickable="false"
android:longClickable="false"
source
share