Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 我的android學習經歷39,android學習經歷39

我的android學習經歷39,android學習經歷39

編輯:關於android開發

我的android學習經歷39,android學習經歷39


關於像第一次進qq一樣的那個漸變企鵝圖的制作 漸變動畫

package com.moonweather.app.activity;

import com.moonweather.app.R;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.widget.ImageView;

public class ShouyeActivity extends Activity {
	private ImageView ima;;
	
	protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.shouye);
        ima=(ImageView) findViewById(R.id.ima);
        AlphaAnimation alphaAnimation = new AlphaAnimation(0.3f, 1.0f);
        alphaAnimation.setDuration(3*1000);
        alphaAnimation.setRepeatCount(0);
        ima.startAnimation(alphaAnimation);
        alphaAnimation.setAnimationListener(new Animation.AnimationListener() {

            @Override
            public void onAnimationStart(Animation animation) {
           
            }
            @Override
            public void onAnimationRepeat(Animation animation) {
            	
            }
            @Override
            public void onAnimationEnd(Animation animation) {
//這裡可以寫動畫結束後的事件,比如說跳轉
            	Intent intent=new Intent(ShouyeActivity.this,ChooseAreaActivity.class); 
            	startActivity(intent);
            	ShouyeActivity.this.finish();
            }
        });
    }
}

  

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved