android TextView实现跑马灯效果
程序员文章站
2023-10-27 18:24:52
本文实例为大家分享了android textview跑马灯效果的具体代码,供大家参考,具体内容如下
一、要点
设置四个属性
android:singleline=...
本文实例为大家分享了android textview跑马灯效果的具体代码,供大家参考,具体内容如下
一、要点
设置四个属性
android:singleline="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableintouchmode="true"
直接在xml中使用
<textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="人生是一场无休、无歇、无情的战斗,凡是要做个够得上称为人的人,都得时时向无形的敌人作战。" />
注意:singleline属性 不能换成 maxllines
二、复杂布局
在复杂的布局中可能不会实现跑马灯效果。例如如下布局中,就只有第一个textview会有跑马灯效果
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/tv1" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="人生是一场无休、无歇、无情的战斗,凡是要做个够得上称为人的人,都得时时向无形的敌人作战。" /> <textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/tv1" android:layout_margintop="10dp" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="人生是一场无休、无歇、无情的战斗,凡是要做个够得上称为人的人,都得时时向无形的敌人作战。" /> </relativelayout>
这时候就需要自定义view,实现跑马灯效果
自定义marqueetextview extents textview 重写isfocused()方法,返回true
public class marqueetext extends textview { public marqueetext(context context) { super(context); } public marqueetext(context context, @nullable attributeset attrs) { super(context, attrs); } public marqueetext(context context, @nullable attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); } @override public boolean isfocused() { return true; } }
布局中使用
<?xml version="1.0" encoding="utf-8"?> <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <com.example.dhj.marqueedemo.view.marqueetext android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/tv1" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="人生是一场无休、无歇、无情的战斗,凡是要做个够得上称为人的人,都得时时向无形的敌人作战。" /> <com.example.dhj.marqueedemo.view.marqueetext android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/tv1" android:layout_margintop="10dp" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="人生是一场无休、无歇、无情的战斗,凡是要做个够得上称为人的人,都得时时向无形的敌人作战。" /> </relativelayout>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android textview 实现长按*选择复制功能的方法
-
Android 仿京东商城底部布局的选择效果(Selector 选择器的实现)
-
Android 点击ImageButton时有“按下”的效果的实现
-
Android开发之使用150行代码实现滑动返回效果
-
Android利用GridView实现单选效果
-
Android编程实现类似天气预报图文字幕垂直滚动效果的方法
-
TextView使用SpannableString设置复合文本 SpannableString实现TextView的链接效果
-
TextView实现跑马灯效果 就这么简单!
-
Android编程实现仿优酷圆盘旋转菜单效果的方法详解【附demo源码下载】
-
Android实现消息提醒小红点效果