Android拓展TextView 实现跑马灯效果

自定义一个View

//package 你的包名;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;
//继承自TextView 实现跑马灯效果
public class ScrollForeverTextView extends TextView {   

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

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

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

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

使用

xml文件中

<!--ScrollForeverTextView前面加上自定义控件所在的包名-->
<ScrollForeverTextView
        android:id="@+id/sftv"
        android:layout_width="fill_parent"
        android:layout_height="32dp"
        android:ellipsize="marquee"
        android:focusable="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:singleLine="true"
        android:gravity="center"
        android:textSize="12sp"
        android:background="#78cdf8"
        android:layout_marginTop="45dip"
        android:text="这是跑马灯的效果这是跑马灯的效果这是跑马灯的效果这是跑马灯的效果这是跑马灯的效果这是跑马灯的效果"
        android:textColor="@android:color/white"/>

最后,findView并设置文本,如果文本长度大于控件的宽度,文本则滚动。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值