gpt4 book ai didi

android - TextView 字幕不起作用

转载 作者:行者123 更新时间:2023-11-29 13:59:08 26 4
gpt4 key购买 nike

我已经尝试了所有方法,我可以想到让这个选取框效果发挥作用。这是我的 xml:

<TextView android:id="@+id/curPlaying"
android:layout_width="320dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:ellipsize="marquee"
android:scrollHorizontally="true"
android:singleLine="true"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:textColor="#83A602"
android:textSize="20dp"
android:text="Nothing Loaded" />

我将其设置为在代码中选中。我认为它可能不起作用的唯一原因是文本以相对频繁的间隔被代码修改。

帮忙吗?

最佳答案

您好,请尝试下面的代码,它对我来说工作正常...

<TextView
android:id="@+id/mywidget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:text="Simple application that shows how to use marquee, with a long text"
android:textColor="#ff4500" />

TextView tv = (TextView) this.findViewById(R.id.mywidget);
tv.setSelected(true); // Set focus to the textview

它正在我的三星 Galaxy ACE 手机上运行。

关于android - TextView 字幕不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10458844/

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