Skip to content

Instantly share code, notes, and snippets.

@DHuckaby
Created October 10, 2012 16:18
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DHuckaby/d6b1d9c8e7f9d70c39de to your computer and use it in GitHub Desktop.
Save DHuckaby/d6b1d9c8e7f9d70c39de to your computer and use it in GitHub Desktop.
Fastscrolling bugfix
public class FastscrollThemedListView extends ListView {
public FastscrollThemedListView(Context context, AttributeSet attrs) {
super(new ContextThemeWrapper(context, R.style.FastscrollThemedListView), attrs);
}
}
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="FastscrollThemedListView" parent="@style/GlobalTheme">
<item name="android:textColorPrimary">?android:textColorPrimaryInverse</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment