TextView实现跑马灯效果 就这么简单!
程序员文章站
2023-12-03 11:45:04
一、方法
这里我们用两种方法来实现跑马灯效果,虽然实质上是一种
实质就是:
1、textview调出跑马灯效果
2、textview获取焦点
第一种:...
一、方法
这里我们用两种方法来实现跑马灯效果,虽然实质上是一种
实质就是:
1、textview调出跑马灯效果
2、textview获取焦点
第一种:
1、textview调出跑马灯效果
android:ellipsize="marquee"
2、textview获取焦点
android:focusable="true"
android:focusableintouchmode="true"
说明:
这种方法如果界面上别的控件获取焦点的时候就会停止这个跑马灯效果
第二种:
1、textview调出跑马灯效果
android:ellipsize="marquee"
2、textview获取焦点
public class mytextview extends textview{ public boolean isfocused() { return true; } }
我们的textview用的就是fry.mytextview
说明:
就算别的程序获取焦点,这个跑马灯效果也不会停止。
二、代码实例
效果图
三、代码
fry.mytextview
package com.example.textviewdemo; import android.content.context; import android.util.attributeset; import android.widget.textview; public class mytextview extends textview{ public mytextview(context context, attributeset attrs, int defstyle) { super(context, attrs, defstyle); // todo auto-generated constructor stub } public mytextview(context context, attributeset attrs) { super(context, attrs); // todo auto-generated constructor stub } public mytextview(context context) { super(context); // todo auto-generated constructor stub } @override public boolean isfocused() { return true; } }
/textviewdemo1/res/layout/activity04.xml
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <textview android:id="@+id/tv_runhorselamp" android:layout_width="match_parent" android:layout_height="wrap_content" android:singleline="true" android:ellipsize="marquee" android:focusable="true" android:focusableintouchmode="true" android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字" /> <!--ellipsize是小数点的意思 marquee 这句话是添加滚动效果--> <!-- 获取焦点之后才能滚动 --> <fry.mytextview android:id="@+id/tv_runhorselamp1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ellipsize="marquee" android:singleline="true" android:text="这是一段很长的威武霸气的滚动的实现跑马灯效果的一段逼格很高的很有含义和涵养的文字" /> <edittext android:id="@+id/et_1" android:layout_width="match_parent" android:layout_height="wrap_content" > </edittext> </linearlayout>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 笔记本电脑上Fn键妙用