本文及代码原创,转载请注明出处:http://maosidiaoxian.iteye.com/blog/1682616
许多程序在开启的时候都会有一个LOGO的展示,然后才进入。参考一个师兄的写法,我自己也对这样的行为进行了封装。代码如下:
/*
* @(#)IntroActivity.java Project:com.sinaapp.msdxblog.androidkit
* Date:2012-9-10
*
* Copyright (c) 2011 CFuture09, Institute of Software,
* Guangdong Ocean University, Zhanjiang, GuangDong, China.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.sinaapp.msdxblog.androidkit.ui;
import java.io.Serializable;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewGroup.LayoutParams;
import android.view.Window;
import android.view.WindowManager;
import android.view.animation.AlphaAnimation;
import android.widget.FrameLayout;
import android.widget.ImageView;
import com.sinaapp.msdxblog.androidkit.thread.HandlerFactory;
/**
* @author Geek_Soledad ([email protected])
*/
public abstract class IntroActivity extends Activity {
private static final String FLAG_RESOURCE = "FLAG_RESOURCE";
/**
* 后台任务完成的标志。
*/
private static final int BACKGROUND_FINISH = 0x01;
/**
* 前台任务完成的标志。
*/
private static final int FRONTGROUND_FINISH = 0x10;
/**
* 表示要播放开场动画。
*/
private static final int INTRO_PLAY = 0;
/**
* 开场动画的资源。
*/
private List<IntroImgResource> mResources = new ArrayList<IntroImgResource>();
/**
* 图片背景颜色。默认为白色。
*/
private int mBackgroundColor = 0xFFFFFFFF;
/**
* UI线程。
*/
private Handler mUiHandler;
/**
* 用来显示动画。
*/
private ImageView mIntroImage;
/**
* 屏幕方向。
*/
private int mOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
init();
runOnMainThread();
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
this.setRequestedOrientation(mOrientation);
this.setContentView(createLayout());
setIntroResources(mResources);
startOnBackground();
showIntro();
}
private void init() {
mUiHandler = new UIHandler(this);
}
/**
* 设置开场动画的图片资源。
*
* @param resources
* 开场动画的图片资源。
*/
protected abstract void setIntroResources(List<IntroImgResource> resources);
/**
* 返回下一个要启动的Activity。
*
* @return 下一个要启动的Activity。
*/
protected abstract Class<?> nextActivity();
/**
* 显示开场动画。
*/
protected void showIntro() {
int delayTime = 0;
for (final IntroImgResource resource : mResources) {
Message msg = new Message();
msg.what = INTRO_PLAY;
Bundle data = new Bundle();
data.putSerializable(FLAG_RESOURCE, resource);
msg.setData(data);
mUiHandler.sendMessageDelayed(msg, delayTime);
delayTime += resource.playerTime;
}
mUiHandler.sendEmptyMessageDelayed(FRONTGROUND_FINISH, delayTime);
}
/**
* 执行耗时的操作。
*/
private void startOnBackground() {
HandlerFactory.getNewHandlerInOtherThread("intro_bg").post(
new Runnable() {
@Override
public void run() {
runOnBackground();
mUiHandler.sendEmptyMessage(0x1);
}
});
}
/**
* 创建启动时的界面Layout。
*
* @return 返回创建的界面Layout.
*/
private View createLayout() {
FrameLayout layout = new FrameLayout(this);
ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
layout.setLayoutParams(layoutParams);
layout.setBackgroundColor(getBackgroundColor());
mIntroImage = new ImageView(this);
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
FrameLayout.LayoutParams.WRAP_CONTENT,
FrameLayout.LayoutParams.WRAP_CONTENT);
params.gravity = Gravity.CENTER;
layout.addView(mIntroImage, params);
return layout;
}
/**
* 获取图片背景。
*
* @return
*/
public int getBackgroundColor() {
return mBackgroundColor;
}
/**
* 设置图片背景。
*
* @param backgroundColor
*/
public void setBackgroundColor(int backgroundColor) {
this.mBackgroundColor = backgroundColor;
}
/**
* 返回屏幕方向。
*
* @return
*/
public int getmOrientation() {
return mOrientation;
}
/**
* 设置屏幕的方向。默认是竖屏。
*
* @param mOrientation
* 屏幕方向。ActivityInfo.SCREEN_ORIENTATION_PORTRAIT或者是ActivityInfo.
* SCREEN_ORIENTATION_LANDSCAPE。
*/
public void setmOrientation(int mOrientation) {
this.mOrientation = mOrientation;
}
/**
* 在前台中执行的代码。如需对界面进行横屏的重新设置,请此在执行setmOrientation()方法。
*/
protected void runOnMainThread() {
}
/**
* 在后台中执行的代码。在此进行比较耗时的操作。
*/
protected void runOnBackground() {
}
protected static class UIHandler extends Handler {
/**
* 是否需要等待。
*/
private int isWaiting = 0;
private WeakReference<IntroActivity> activity;
public UIHandler(IntroActivity activity ){
this.activity = new WeakReference<IntroActivity>(activity);
}
public void handleMessage(android.os.Message msg) {
if (msg.what == INTRO_PLAY) {
IntroImgResource resource = (IntroImgResource) msg.getData()
.getSerializable(FLAG_RESOURCE);
AlphaAnimation animation = new AlphaAnimation(
resource.startAlpha, 1f);
animation.setDuration(resource.playerTime);
activity.get().mIntroImage.setImageResource(resource.mResId);
activity.get().mIntroImage.startAnimation(animation);
return;
}
if (msg.what == BACKGROUND_FINISH || msg.what == FRONTGROUND_FINISH) {
isWaiting |= msg.what;
// 当后台或前台的任务未完成时,不执行Activity的跳转。
if (isWaiting == (BACKGROUND_FINISH | FRONTGROUND_FINISH)) {
activity.get().startActivity(new Intent(activity.get(), activity.get().nextActivity()));
activity.get().finish();
return;
}
}
};
};
/**
* 开场动画的图片资源类。封装了图片、播放时间、开始时的透明程度。
*
* @author msdx
*
*/
protected class IntroImgResource implements Serializable {
/**
* 序列化ID。
*/
private static final long serialVersionUID = -2257252088641281804L;
/**
* 资源图片ID.
*/
private int mResId;
/**
* 播放时间,单位为毫秒。
*/
private int playerTime;
/**
* 开始时的透明程度。0-1之间。
*/
private float startAlpha;
/**
* 开场动画资源的构造方法。
*
* @param mResId
* 图片资源的ID。
* @param playerTime
* 图片资源的播放时间,单位为毫秒。。
* @param startAlpha
* 图片资源开始时的透明程度。0-255之间。
*/
public IntroImgResource(int mResId, int playerTime, float startAlpha) {
super();
this.mResId = mResId;
this.playerTime = playerTime;
this.startAlpha = startAlpha;
}
/**
* 获取资源图片ID。
*
* @return 资源图片ID。
*/
public int getmResId() {
return mResId;
}
/**
* 设置资源图片ID.
*
* @param mResId
* 要设置的资源图片ID.
*/
public void setmResId(int mResId) {
this.mResId = mResId;
}
/**
* 返回资源图片的播放时间。
*
* @return 资源图片的播放时间。
*/
public int getPlayerTime() {
return playerTime;
}
/**
* 设置资源图片的播放时间。
*
* @param playerTime
* 资源图片的播放时间。
*/
public void setPlayerTime(int playerTime) {
this.playerTime = playerTime;
}
/**
* 得到资源开始时的透明程度。
*
* @return
*/
public float getStartAlpha() {
return startAlpha;
}
/**
* 设置资源开始时的透明程度。
*
* @param startAlpha
*/
public void setStartAlpha(float startAlpha) {
this.startAlpha = startAlpha;
}
}
}
使用时继承上面的类,主要重写里面的以下两个抽象方法:
1、nextActivity(),在这里返回下一个Activity。
2、setIntroResources(List<IntroImgResource> resources),在这里添加要展示的图片资源(包括展示时间)。这里仅支持图片,不支持动画、影片等。展示的效果是渐变显示。
如果有耗时的操作,重写runOnBackground()方法,它会在一个非UI线程中运行。
如果要进行横屏等的设置,重写runOnMainThread()方法,它在主线程中运行。设置横屏等行为,请使用代码中提供的方法。
以上代码来自我的开源项目cfuture-androidkit,目前托管在谷歌上,网址为:http://code.google.com/p/cfuture-androidkit/