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的主要内容,如果未能解决你的问题,请参考以下文章

UITextView 在滚动之前不会显示

尽管内容大小正确,但 UIScrollview 不会滚动; textview 子视图框架也表现得很奇怪

如何在 iOS 中制作单行水平滚动 TextView

没有部分绘制线条的 TextView

TextView 滚动不顺畅

TextView setSelected(false)不会停止Marquee