如果文本在android中较少,则Marque文本不会移动

问题描述 投票:0回答:1

我正在使用下面的代码,对于大型语句,它工作正常,但对于仅像“ hello”这样的小文本却不能正常工作。

<TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ellipsize="marquee"
            android:marqueeRepeatLimit="marquee_forever"
            android:maxLines="1"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:text="this_bill_has_some_unipay_points_promotion"/>

我正在使用下面的代码,它对于大型语句工作正常,但不适用于仅包含“ hello”的小文本。

android android-layout textview marquee
1个回答
0
投票

而不是android:layout_width =“ match_parent”

© www.soinside.com 2019 - 2024. All rights reserved.