视频直播源码,Android TextView设置跑马灯效果

发布时间 2023-04-20 14:20:46作者: 云豹科技-苏凌霄

视频直播源码,Android TextView设置跑马灯效果

1、先在xml中给Textview设置好对应的属性

 


 <TextView
        android:id="@+id/tv"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@id/show_float"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="-1"
        android:layout_marginTop="20dp"
        android:padding="10dp"
        android:text="欢迎来到跑马灯新手村,这是新手示例~"
        android:textColor="@color/white"
        android:background="@drawable/com_live_rounded_rectangle"/>
 

2、然后在代码中设置请求获取焦点即可

 


        TextView tv = findViewById(R.id.tv);
        tv.requestFocus();

 

 以上就是 视频直播源码,Android TextView设置跑马灯效果,更多内容欢迎关注之后的文章