文字跑马灯

MarqueeTextView.java  //新建一个自定义控件,继承TextView就行
public class MarqueeTextView extends android.support.v7.widget.AppCompatTextView{
    public MarqueeTextView(Context context) {
        super(context);
    }

    public MarqueeTextView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MarqueeTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);

    }

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

bfrag.xml   //在你要显示的xml调用



    

    

    

 

你可能感兴趣的:(文字跑马灯)