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; //from ww w. j ava 2 s .com import android.content.Context; import android.util.AttributeSet; import android.widget.SearchView; /** * Created by yifan on 6/19/14. */ public class LyricSearchView extends SearchView { private static final String TAG = LyricSearchView.class.getSimpleName(); public LyricSearchView(Context context) { super(context); } public LyricSearchView(Context context, AttributeSet attrs) { super(context, attrs); } }