我的小部件中有一个文本视图,可以像文字框一样滚动文本。现在,它在正常状态下工作。但是,如果我通过我的主屏幕滚动(滑动)其他页面,则此文本视图停止滚动。任何想法如何解决这个问题?
我的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>
感谢。
答案 0 :(得分:1)
你的xml看起来不错,
在你的简历方法中 尝试添加
textview_update.setSelected(true);
另外,我发现一些小设备无法处理长度超过1024的textview,否则会停止(当内存已满)