Back to project page led-notifier.
The source code is released under:
Apache License
If you think the Android project led-notifier listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ciubotariu_levy.lednotifier; /* w ww . j a v a 2s .com*/ import android.content.Context; import android.util.AttributeSet; import android.view.ContextThemeWrapper; import android.widget.ListView; public class FastScrollThemedListView extends ListView { public FastScrollThemedListView(Context context) { super(new ContextThemeWrapper(context, R.style.FastscrollThemedListView)); } public FastScrollThemedListView(Context context, AttributeSet attrs) { super(new ContextThemeWrapper(context, R.style.FastscrollThemedListView), attrs); } public FastScrollThemedListView(Context context, AttributeSet attrs, int defStyle) { super(new ContextThemeWrapper(context, R.style.FastscrollThemedListView), attrs, defStyle); } }