riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cn.flightfeather.thirdappmodule.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;
    }
}