我正在开发一个AppWidget
需要TextView
将文本显示为选框的地方。我尝试使用以下代码(就像在常规代码中所做的那样Activity
),但文本不会滚动。
<TextView
android:layout_width="150dip"
android:layout_height="wrap_content"
android:text="@string/marquee_forever"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever" />
谁能告诉我如何解决这个问题?