Android · 广告走灯

layout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="fill_parent"
        android:layout_height="120dp"
        android:background="@drawable/icon" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="fill_parent"
        android:layout_height="120dp"
        android:background="@drawable/expriment" />


</RelativeLayout>

MainActivity

package com.manhua.imagead;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.util.Log;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;

public class MainActivity extends Activity {

    public ImageView imageView;
    public ImageView imageView2;

    public Animation animation1;
    public Animation animation2;
    
    public boolean juage = true;

    public int images[] = new int[] { R.drawable.icon, R.drawable.expriment,
            R.drawable.changer, R.drawable.dataline, R.drawable.preffitication };

    public int count = 0;
    
    public Handler handler = new Handler();

    public Runnable runnable = new Runnable() {

        @Override
        public void run() {
            // TODO Auto-generated method stub
            AnimationSet animationSet1 = new AnimationSet(true);
            AnimationSet animationSet2 = new AnimationSet(true);
            imageView2.setVisibility(0);
            TranslateAnimation ta = new TranslateAnimation(
                    Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF,
                    -1f, Animation.RELATIVE_TO_SELF, 0f,
                    Animation.RELATIVE_TO_SELF, 0f);
            ta.setDuration(2000);
            animationSet1.addAnimation(ta);
            animationSet1.setFillAfter(true);
            ta = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 1.0f,
                    Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF,
                    0f, Animation.RELATIVE_TO_SELF, 0f);
            ta.setDuration(2000);
            animationSet2.addAnimation(ta);
            animationSet2.setFillAfter(true);
            
            imageView.startAnimation(animationSet1);
            imageView2.startAnimation(animationSet2);
            imageView.setBackgroundResource(images[count % images.length]);
            count++;
            imageView2.setBackgroundResource(images[count % images.length]);
            
            
            if (juage)
                handler.postDelayed(runnable, 6000);
            Log.i("handler", "handler");
        }

    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        imageView = (ImageView) findViewById(R.id.imageView);
        imageView2 = (ImageView) findViewById(R.id.imageView2);

        imageView2.setVisibility(4);
        handler.postDelayed(runnable, 2000);
    }
    

    public void onPause() {
        juage = false;
        super.onPause();
    }


}

 

转载于:https://www.cnblogs.com/manhua/p/4165913.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值