5、跑马灯

1、属性

* sigleLine

* ellipsize

* marqueeRepeatLimit

* focusable

* focusableIntouchMode

2、布局代码

<TextView
android:id="@+id/tv_7"
android:text="小秦同学在上学小秦同学在上学小秦同学在上学"
android:textSize="36sp"
android:textColor="#000000"
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
//设置单行显示
android:singleLine="true"
//设置跑马灯效果
android:ellipsize="marquee"
//跑马灯效果时长
android:marqueeRepeatLimit="marquee_forever"
//获得焦点
android:focusable="true"
android:focusableInTouchMode="true">
</TextView>

3、Activity代码

  * 声明TextView

   private TextView mtv7;

 * 跑马灯实现

   //设置跑马灯
mtv7=(TextView) findViewById(R.id.tv_7);
mtv7.setSelected(true);

 

posted @ 2020-06-08 21:27  小秦同学在上学  阅读(25)  评论(0编辑  收藏  举报