<view.FocusedTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:ellipsize="marquee"
android:singleLine="true"
android:text="经常清理手机垃圾文件、删除不实用的app,可以是手机运行更快哦!"
android:textColor="#edfdff"
android:textSize="18sp"/>
- 第二步
新建FocusedTextView
public class FocusedTextView extends TextView {
public FocusedTextView(Context context) {
super(context);
}
public FocusedTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public FocusedTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean isFocused() {
return true;
}
}
- 3把View 的标签改成自定义View 的路径
-