小编Ham*_*azi的帖子

如何让Android中的文字从左向右移动?

我使用此代码使文本移动,并从右向左正确移动.

不过,我想让TextView中的文本从左向右移动.

这是我目前的代码:

<TextView
    android:id="@+id/mylinenews"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="5"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true"
    android:singleLine="true"

    android:text="textmoving textmoving textmoving textmoving textmoving textmoving textmoving textmoving textmoving textmoving "
    android:textColor="#fff"
/>
Run Code Online (Sandbox Code Playgroud)

如何修改此代码以使文本从左向右移动?

android textview

6
推荐指数
1
解决办法
2万
查看次数

标签 统计

android ×1

textview ×1