Back to project page LyricHere.
The source code is released under:
Apache License
If you think the Android project LyricHere 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 cn.zhaiyifan.lyrichere.ui; // ww w . j a va2 s . c om import android.content.Context; import android.util.AttributeSet; import android.widget.TextView; /** * Created by yifan on 6/5/14. */ public class ListScrollTextView extends TextView { public ListScrollTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(); rotate(); } public ListScrollTextView(Context context, AttributeSet attrs) { super(context, attrs); init(); rotate(); } public ListScrollTextView(Context context) { super(context); init(); rotate(); } private void rotate() { setSelected(true); } private void init() { if (!isInEditMode()) { } } }