您好,登錄后才能下訂單哦!
要實現TextView文本動態變化的背景,可以通過創建一個帶有動畫效果的Drawable資源文件,并將其設置為TextView的背景。以下是具體步驟:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item
android:drawable="@drawable/bg_color1"
android:duration="500" />
<item
android:drawable="@drawable/bg_color2"
android:duration="500" />
<item
android:drawable="@drawable/bg_color3"
android:duration="500" />
</animation-list>
bg_color1.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FF0000" />
</shape>
bg_color2.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#00FF00" />
</shape>
bg_color3.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#0000FF" />
</shape>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dynamic Background"
android:background="@drawable/bg_animation" />
TextView textView = findViewById(R.id.textView);
AnimationDrawable animationDrawable = (AnimationDrawable) textView.getBackground();
animationDrawable.start();
通過以上步驟,就可以實現TextView文本動態變化的背景效果。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。