老罗安卓教程 在TextView文本中实现走马灯效果

来源:互联网 发布:华为mac地址在哪里 编辑:程序博客网 时间:2024/06/04 23:51
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <TextView        android:id="@+id/textView21"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:layout_margin="10dp"        android:background="#ffffff"        android:ellipsize="marquee"        android:focusable="true"        android:marqueeRepeatLimit="marquee_forever"        android:focusableInTouchMode="true"        android:padding="10dp"        android:singleLine="true"        android:textColor="#000"        android:textSize="20sp" /></LinearLayout>

0 0