在String.xml中添加: ...
在String.xml中添加:
<string name="txt">跑馬燈效果,我跑啊跑</string>
在layout/mian.xml中添加TextView:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40sp"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:text="@string/txt" />
最後在mainActivity.java中添加一個屬性:
//跑馬燈效果
TextView tv = (TextView) findViewById(R.id.textView);
tv.setSelected(true);