我想要一个带有水平滚动的简单 TextView,我知道我为此使用了 HorizontalScrollview,并且我希望文本能够连续自动滚动。那可能吗?
问问题
2751 次
2 回答
4
您可以在 TextView 属性中使用 android:ellipsize="marquee" 或通过实现自己的动画
于 2010-06-03T19:58:42.463 回答
1
这是简单地使用 XML 的自动滚动文本视图的小示例,无需编写 Java 代码。希望你会喜欢!自己试试,很容易上手
尝试这个 :
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:scrollHorizontally="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:text="This is small example for auto scroll text view simply using XML, no need to code Java. Hope you like it! Try it on your own, it is very easy to perform" />
此处文本将自动滚动,您将获得无限滚动。玩得开心!
于 2013-10-14T20:45:54.813 回答