为什么没有跑马灯效果?用android studio写的

为什么没有跑马灯效果?用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"/>

正在回答 回答被采纳积分+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必须要得到焦点。

  • 我在使用singLine的时候IDE提示说已经废弃这个用法了,让我用maxLine, 但是maxLine = 1实现不了跑马灯效果
    2018-04-04 02:39:16
  • irista23 回复 Eric_Guoyh #2
    如果要实现跑马灯还是需要使用singleLine="true"的,因为maxLine只是限制高度, singleLine 才是强制不让换行。
    2018-04-04 10:04:25
  • 那就是说视频教程是错的咯。
    2018-04-28 12:59:08
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
Android从界面到数据存储2018版
  • 参与学习       504    人
  • 提交作业       1003    份
  • 解答问题       1044    个

本专题是专为有Java语言基础想入坑Android开发的同学们准备的。从AndroidUI基础一直到网络,数据存储,一步到位入门Android开发。如果你会Java,那就不要犹豫了~ ~

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师