为什么没有跑马灯效果?用android studio写的
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:textIsSelectable="true"
android:marqueeRepeatLimit="marquee_forever"
android:text="are you ok ? ok! are you ok ? i am ok! are you ok ? gun!"
android:textColor="@color/colorAccent"
android:textSize="30dp"/>
25
收起
正在回答 回答被采纳积分+1
1回答
irista23
2017-08-30 11:44:27
代码做如下修改即可:
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:marqueeRepeatLimit="marquee_forever" android:singleLine="true" android:text="are you ok ? ok! are you ok ? i am ok! are you ok ? gun!" android:textColor="@color/colorAccent" android:textSize="30dp" />
android:focusable="true"和android:focusableInTouchMode="true"跑马灯才能效,跑马灯要想有效,TextView必须要得到焦点。
Android从界面到数据存储2018版
- 参与学习 504 人
- 提交作业 1003 份
- 解答问题 1044 个
本专题是专为有Java语言基础想入坑Android开发的同学们准备的。从AndroidUI基础一直到网络,数据存储,一步到位入门Android开发。如果你会Java,那就不要犹豫了~ ~
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星