影片直播原始碼,Android TextView設定跑馬燈效果

zhibo系統開發發表於2023-04-20

影片直播原始碼,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設定跑馬燈效果,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2947145/,如需轉載,請註明出處,否則將追究法律責任。

相關文章