一直滚动的TextView[跑马灯效果]

2019独角兽企业重金招聘Python工程师标准>>> 一直滚动的TextView[跑马灯效果]

 

/**
 * 一直滚动的TextView[跑马灯效果]
 */
public class AlwaysMarqueeTextView extends TextView {

	public AlwaysMarqueeTextView(Context context) {
		super(context);
	}

	public AlwaysMarqueeTextView(Context context, AttributeSet attrs) {
		super(context, attrs);
	}

	public AlwaysMarqueeTextView(Context context, AttributeSet attrs,
			int defStyle) {
		super(context, attrs, defStyle);
	}

	@Override
	public boolean isFocused() {
		return true;
	}
}


    <com.xxx.view.AlwaysMarqueeTextView
                    android:id="@+id/xxx_tv01"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_centerInParent="true"
                    android:ellipsize="marquee"
                    android:focusable="true"
                    android:marqueeRepeatLimit="marquee_forever"
                    android:singleLine="true"
                    android:text="一直滚动的TextView[跑马灯效果]"
                    android:textColor="@color/black" />
 

转载于:https://my.oschina.net/dminter/blog/205036

上一篇:tree field 属性中 为什么获取不到uid 和 domain_force 为何可以写 python


下一篇:Android开发之自定义控件(Kotlin篇)