package cn.flightfeather.thirdapp.view;
|
|
import android.content.Context;
|
import android.util.AttributeSet;
|
|
/**
|
* Created by hyhb01 on 2018/3/21.
|
*/
|
|
public class ScrollTextView extends android.support.v7.widget.AppCompatTextView {
|
public ScrollTextView(Context context) {
|
super(context);
|
}
|
|
public ScrollTextView(Context context, AttributeSet attrs) {
|
super(context, attrs);
|
}
|
|
public ScrollTextView(Context context, AttributeSet attrs, int defStyleAttr) {
|
super(context, attrs, defStyleAttr);
|
}
|
|
@Override
|
public boolean isFocused() {
|
return true;
|
}
|
}
|