欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android App启动图启动界面(Splash)的简单实现代码

程序员文章站 2022-04-09 16:59:47
第一步:创建一个activity第二步:创建一个新的activity 命名为splashnew -> activity -> empty activityp>第三步:将准备好的启动图...

第一步:创建一个activity

Android App启动图启动界面(Splash)的简单实现代码

第二步:创建一个新的activity 命名为splash

new -> activity -> empty activity

Android App启动图启动界面(Splash)的简单实现代码

p>第三步:将准备好的启动图片放到drawable目录下,并修改splash的xml布局文件,如下图所示

Android App启动图启动界面(Splash)的简单实现代码

第四步:修改splashactivity中的代码如下

Android App启动图启动界面(Splash)的简单实现代码

import android.content.intent;
import android.support.v7.app.appcompatactivity;
import android.os.bundle;
import android.view.windowmanager;
public class splash extends appcompatactivity {
@override
protected void oncreate(bundle savedinstancestate) {
 super.oncreate( savedinstancestate);
 getwindow().addflags(windowmanager.layoutparams.flag_fullscreen);//隐藏状态栏
 getsupportactionbar().hide();//隐藏标题栏
 setcontentview(r.layout.activity_splash);
 thread mythread=new thread(){//创建子线程
  @override
  public void run() {
   try{
    sleep(5000);//使程序休眠五秒
    intent it=new intent(getapplicationcontext(),mainactivity.class);//启动mainactivity
    startactivity(it);
    finish();//关闭当前活动
   }catch (exception e){
    e.printstacktrace();
   }
  }
 };
 mythread.start();//启动线程
}
}

注 意

getwindow().addflags(windowmanager.layoutparams.flag_fullscreen); 
getsupportactionbar().hide(); 

需要在 setcontentview(r.layout.activity_splash);

之前执行

第五步:修改配置文件androidmanifest中的代码

Android App启动图启动界面(Splash)的简单实现代码
将上述代码的intent filter标签移动到name为.splash的activity标签下(将启动页面修改为splashactivity),如下图
Android App启动图启动界面(Splash)的简单实现代码

好了,现在大功告成了,快运行代码试试效果怎么样

总结

到此这篇关于android app启动图启动界面(splash)的简单实现的文章就介绍到这了,更多相关android app启动图启动界面(splash)的简单实现内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!