我已经提到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"
/>
答案 0 :(得分: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>