Android 设置文字水平滚动

布局文件:

   <TextView
            android:id="@+id/text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:textSize="30dp"
            android:text="文章列表"

   			android:maxEms="4"
            android:marqueeRepeatLimit="marquee_forever"
            android:ellipsize="marquee"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:singleLine="true"
            />

android:maxEms=“4” //限制一行字数
android:marqueeRepeatLimit=“marquee_forever” //无限滚动
android:ellipsize=“marquee” //设置为"滚动"

你可能感兴趣的:(Android,android)