gpt4 book ai didi

android - 在带有选取框的 TextView 中,不会开始循环

转载 作者:行者123 更新时间:2023-11-30 03:42:23 24 4
gpt4 key购买 nike

我有一个大布局和一个只有 TextView 的虚拟布局。两种情况下的 TextView 小部件是相同的,但是当放置在更复杂的布局中时它不起作用。

跑马灯有什么限制吗?

<TextView
android:id="@+id/txt_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:text="a sdasd as das d as d asd a sd as d a sd as d as das d a sd a" >
</TextView>

最佳答案

在我的例子中,android:focusable="true"和 android:focusableInTouchMode="true" 使测试循环:

<TextView
android:id="@+id/txt_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:maxLines="1"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="some long text">
</TextView>

关于android - 在带有选取框的 TextView 中,不会开始循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15521868/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com