TextView不会滚动RemoteView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView不会滚动RemoteView相关的知识,希望对你有一定的参考价值。
我已经提到this使我的textview可滚动,但它似乎并不适合我。我究竟做错了什么?我的textView是RemoteView
的一部分,如果它很重要的话......
码
<TextView
android:ellipsize="marquee"
android:scrollHorizontally="true"
android:textColor="@color/black"
android:layout_gravity="left"
android:id="@+id/status_bar_track_name"
android:focusable="true"
android:fadingEdge="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
/>
答案
将TextView更改为:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:duplicateParentState="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:fadingEdge="horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"
android:scrollHorizontally="false"
android:singleLine="true"
>
<requestFocus android:duplicateParentState="true"
android:focusable="true"
android:focusableInTouchMode="true" />
</TextView>
以上是关于TextView不会滚动RemoteView的主要内容,如果未能解决你的问题,请参考以下文章