热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

android实现循环播放的文字跑马灯效果

今天因为项目需要实现一个文字跑马灯的效果,作为进门不久我也不知道怎么办,就在网上搜了一下,受前辈们的启发,我实现了一个简单的循环播放文字的跑马灯效果。首先,自定义一个让其继承TextView并实现R

 今天因为项目需要实现一个文字跑马灯的效果,作为进门不久我也不知道怎么办,就在网上搜了一下,受前辈们的启发,我实现了一个简单的循环播放文字的跑马灯效果。

首先,自定义一个让其继承TextView并实现Runnable接口。

public class MarqueeTextView extends TextView implements Runnable{

private int currentScrollX;//当前滚动的位置
private boolean isStop=false;
private int textWidth;
private boolean isMeasure=false;
public MarqueeText(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
public MarqueeText(Context context,AttributeSet attrs) {
super(context,attrs);
// TODO Auto-generated constructor stub
}
public MarqueeText(Context context,AttributeSet attrs,int defStyle) {
super(context,attrs,defStyle);
// TODO Auto-generated constructor stub
}

@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
if (!isMeasure) {//文字宽度只需要获取一次就可以了
getTextWidth();
isMeasure=true;
}
}
/**
* 获取文字宽度
*/
private void getTextWidth(){
Paint paint=this.getPaint();
String str=this.getText().toString();
textmarquee"
           android:focusable="true"
             android:focusableInTouchMode="true"

 android:marqueeRepeatLimit="marquee_forever"(实现无限循环)

main_activity.xml

    xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:orientation="vertical" >

android:id="@+id/my_layout"
android:layout_
android:layout_
android:orientation="horizontal"
android:paddingLeft="5dp"
android:background="#e5e2e2"
android:paddingRight="5dp">

android:id="@+id/test"
android:layout_
android:layout_
android:layout_weight="1.0"
android:background="#e5e2e2"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"

android:singleLine="true"
android:text="这才是真正的文字跑马灯效果这才是真正的字跑马灯效果这才是真正的"
android:textColor="#000000"
android:textSize="16sp" >


android:id="@+id/button2"
android:layout_
android:layout_
android:background="#e5e2e2"
android:OnClick="stop"
android:text="停止"
android:layout_marginLeft="5dp"
android:textSize="16sp" />


最后,在MainActivity.java 中去实现它

public class MainActivity extends Activity {

private MarqueeText text;
private LinearLayout layout;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (MarqueeText) findViewById(R.id.test);
layout = (LinearLayout) findViewById(R.id.my_layout);
}


public void stop(View v) {
text.stopScroll();
layout.setVisibility(View.GONE);
}

}






推荐阅读
author-avatar
ABC13517626247
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有