Try to execute
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="listviewfastscrollstyle" parent="android:Theme"> <item name="android:fastScrollTrackDrawable">@drawable/listselector</item> <item name="android:fastScrollThumbDrawable">@drawable/listselector</item> </style> </resources>
In your manifest, set the style as follows:
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/CustomTheme">
this is listview
<ExpandableListView android:id="@android:id/list1" android:layout_width="match_parent" android:layout_height="0dip" android:layout_weight="1" android:drawSelectorOnTop="false" android:fastScrollAlwaysVisible="true" android:fastScrollEnabled="true" />
anjaly May 15 '13 at 10:46 2013-05-15 10:46
source share