Android 循环上下滚动

最近在做项目的时候遇到了一个上下滚动文字的需求,在网上找到了一个自定义的TextView,但是切换效果很图片,没有滚动的效果,考虑到html的marquee效果添加到TextView中,无奈没有效果,另外也浏览了js写的滚动,效果很好,但是应用起来很麻烦,毕竟是Android原生界面。最后,只能自己做一个了(注:此处是两句文字来回滚动)

  • 1.布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fe0"
         >

        <TextView
            android:id="@+id/autoPlay"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="位移动画"
            android:padding="16dp"/>
         <TextView
            android:id="@+id/autoPlay1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="位移动画2"
            android:padding="16dp"/>
    </RelativeLayout>

</LinearLayout>

2.Activity中的代码

private TextView aView;
private TextView aView1;
final Handler handler = new Handler() {
		public void handleMessage(Message msg) { // handle message
			switch (msg.what) {
			case 1:
				// UI操作
                          //此处两个TextView不分先后,只要与else里的顺序不同即可
				if (curIndex == 1) {
					autoPlay(aView, aView1);
					curIndex++;
				} else {
					autoPlay(aView1, aView);
					curIndex--;
				}

				Message message = handler.obtainMessage(1);
				//此处延时应大于等于动画播放时间,否则会有卡顿现象
				// 发送message 
                                // 这样消息就能循环发送
                              handler.sendMessageDelayed(message, 3000); 																		}
			super.handleMessage(msg);
		}
	};


在onCreate方法里添加

aView = (TextView) findViewById(R.id.autoPlay);
aView1 = (TextView) findViewById(R.id.autoPlay1);
Message message = handler.obtainMessage(1);
handler.sendMessageDelayed(message, 1000); // 发送message

3.autoPlay方法

 public void autoPlay(TextView aView, TextView aView1) {
		TranslateAnimation inAnimation = new TranslateAnimation(0, 0, 100, 0);
		inAnimation.setDuration(2000);
		inAnimation.setFillAfter(true);
		TranslateAnimation outAnimation = new TranslateAnimation(0, 0, 0, -100);
		outAnimation.setDuration(2000);
		outAnimation.setFillAfter(true);
		aView1.clearAnimation();
		aView.clearAnimation();
		aView1.startAnimation(outAnimation);
		aView.startAnimation(inAnimation);
	}

转载于:https://my.oschina.net/u/2483853/blog/718366

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值