TextView不会滚动RemoteView

问题描述 投票:1回答:1

我已经提到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"
            />
android xml scroll textview remoteview
1个回答
0
投票

将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>
© www.soinside.com 2019 - 2024. All rights reserved.