(一)用2个Activity实现

  用Handler对象的postDelayed方法来实现延迟跳转的目的。

  补充:Handler的常用方法:

 //  立即执行Runnable对象
public final boolean post(Runnable r);
// 在指定的时间(uptimeMillis)执行Runnable对象
public final boolean postAtTime(Runnable r, long uptimeMillis);
// 在指定的时间间隔(delayMillis)执行Runnable对象
public final boolean postDelayed(Runnable r, long delayMillis);

  1、activity_splash.xml:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" /> </LinearLayout>

  2、activity_main.xml:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="这里是主界面" /> </LinearLayout>

  3、SplashActivity:

 package com.example.splashtest;

 import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.Window; public class SplashActivity extends Activity { private final int SPLASH_DISPLAY_LENGHT = 3000;
private Handler handler; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_splash); handler = new Handler();
// 延迟SPLASH_DISPLAY_LENGHT时间然后跳转到MainActivity
handler.postDelayed(new Runnable() { @Override
public void run() {
Intent intent = new Intent(SplashActivity.this,
MainActivity.class);
startActivity(intent);
SplashActivity.this.finish();
}
}, SPLASH_DISPLAY_LENGHT); }
}

  4、MainActivity:

 package com.example.splashtest;

 import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem; public class MainActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

  6、修改AndroidManifest.xml文件:

      ...
     <activity
android:name=".SplashActivity"
android:label="splash" >
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
</activity>
     ...

  7、在SplashActivity中禁用返回键:

 @Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
  if(keyCode == KeyEvent.KEYCODE_BACK){
    return true;
  }
  return super.onKeyDown(keyCode, event); }

  

  (二)用一个Activity实现

  主要利用控件的隐藏来实现。

  1、xml文件:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <LinearLayout
android:id="@+id/splash_lt"
android:layout_width="match_parent"
android:layout_height="match_parent" > <ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_launcher" />
</LinearLayout> <TextView
android:id="@+id/main_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="这是主界面" /> </LinearLayout>

  2、MainActivity

 package com.example.splashtest2;

 import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.os.SystemClock;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.widget.LinearLayout; public class MainActivity extends Activity { private final int STOP_SPLASH = 0;
private final int SPLASH_TIME = 3000; private LinearLayout splashLt; private Handler splashHandler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case STOP_SPLASH:
splashLt.setVisibility(View.GONE);
break;
default:
break;
} super.handleMessage(msg);
}
}; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main); splashLt = (LinearLayout) findViewById(R.id.splash_lt); Message msg = new Message();
msg.what = STOP_SPLASH; // 注:这里必须用延迟发送消息的方法,否则ImageView不会显示出来
splashHandler.sendMessageDelayed(msg, SPLASH_TIME);
} }

  (三)小结

  建议使用第一种方法,用两个Activity实现,因为MainActivity中的代码不宜过多。

最新文章

  1. 注解:Hibernate双向N-&gt;N关联(两端都控制关联关系)
  2. 2015年ACM沈阳网络赛(准备做掉4道:)
  3. Erlang 程序引发共享内存 bug 的一个例子
  4. poj 3669 线段树成段更新+区间合并
  5. 【翻译】CEDEC2014跨世代多平台并行开发PS4版如龙维新开发的一年
  6. 【IHttpHandler】使用IHttpHandler防盗链
  7. RegExp类型和text()方法
  8. 158. Read N Characters Given Read4 II - Call multiple times
  9. PHP SimpleXML
  10. linux dd实现磁盘完整全盘镜像备份backup,恢复recover(restore)
  11. Android提高第二篇之SurfaceView的基本使用
  12. 封装GCD以及介绍如何使用
  13. LAMP与LNMP架构的区别及其具体的选择说明
  14. jar包 pom
  15. CentOS Linux change IP Address
  16. curl -d中的json存在引号怎么处理?
  17. docker 系列 - 基础镜像环境和Docker常用命令整理
  18. unity-Profiler调试Android的正确姿势(mumu模拟器)
  19. Swift Struct 结构体
  20. python基础易错总结

热门文章

  1. Springboot集成权限管理框架apache shiro
  2. 解决PHP编译cURL的reinstall the libcurl问题
  3. ListView中pointToPosition()方法使用具体演示样例
  4. kdump 的使用在linux崩溃时
  5. virtualbox 扩容
  6. Node Embedding
  7. 用关键字interface定义接口,通过关键字implements来实现接口
  8. web开发之web 验证码--- webqq 机器人
  9. 非常实用的JavaScript小技巧
  10. SQL Server 日期格式化输出