gpt4 book ai didi

安卓小工具 : Textview stops marquee on homepage scroll

转载 作者:行者123 更新时间:2023-11-29 01:56:54 25 4
gpt4 key购买 nike

我的小部件中有一个 TextView ,它像选取框一样滚动文本。现在,它在正常状态下工作。但是,如果我在主屏幕上滚动(滑动)其他页面,则此 TextView 将停止滚动。知道如何解决这个问题吗?

我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="8dip"
android:background="@drawable/myshape" >

<TextView
android:id="@+id/update"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"
android:gravity="center_vertical|center_horizontal"
android:layout_gravity="center"
android:textColor="@android:color/black"
android:marqueeRepeatLimit="marquee_forever"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:scrollHorizontally="true"
android:singleLine="true"
android:textSize="25dp" >

<requestFocus
android:duplicateParentState="true"
android:focusable="true"
android:focusableInTouchMode="true" />
</TextView>

</LinearLayout>

谢谢。

最佳答案

你的 xml 看起来没问题,

在你的 resume 方法中尝试添加

textview_update.setSelected(true);

此外,我发现一些小型设备无法处理长度超过 1024 的 TextView ,否则它会停止(当内存已满时)

关于安卓小工具 : Textview stops marquee on homepage scroll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14645756/

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