【Android开发那点破事】打开APP加载页面实现

今天的破事呢就说说APP加载页面的实现。一般情况下,当APP打开的时候,我们需要做很多事情,比如检查网络连接啊,初始化一些配置啊等等。我们可以让这些事情在APP完全打开之前做完,然后呢在打开的过程中显示一些logo信息。想必大家都见过。

先贴个运行效果:

【Android开发那点破事】打开APP加载页面实现

好,我们进入正题。

首先我们先配置下AndroidManifest.xml

在application节点里面添加一个自定义的activity:

<!-- startup page -->
<activity
android:name="com.withiter.quhao.activity.LaunchActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- category page -->

这里注意两个事情:

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

就是刚打开APP的时候加载这个activity:

com.withiter.quhao.activity.LaunchActivity

第二步,写这个activity,我先把代码贴出来,具体的说明都写在注释里了:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.Menu; import com.withiter.quhao.R; public class LaunchActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.launch);
Handler x = new Handler();//定义一个handle对象 x.postDelayed(new splashhandler(), 3000);//设置3秒钟延迟执行splashhandler线程。其实你这里可以再新建一个线程去执行初始化工作,如判断SD,网络状态等
} class splashhandler implements Runnable{
public void run() {
startActivity(new Intent(getApplication(),MainActivity.class));// 这个线程的作用3秒后就是进入到你的主界面
LaunchActivity.this.finish();// 把当前的LaunchActivity结束掉
}
} @Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.launch, menu);
return true;
} }

然后3秒后就可以到主界面了。

这里lunch.xml就是你打开是的界面,将停留3秒:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".LaunchActivity"
android:gravity="center"
android:background="#FFFFFF"
>
<ImageView
android:id="@+id/launch_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/empty"
android:src="@drawable/launch_logo"
android:scaleType="fitXY"
android:gravity="center"
android:layout_gravity="center"
/> </FrameLayout>

我这里呢放了一个图片,就是最开始见到的那个,怎么样,效果还可以吧。花了好长时间ps的。。

好了今天这个破事就到这里,其实android开发就这么点破事。关于其他破事,见专栏:

更多Android开发的破事,请看专栏:《Android开发那点破事》

上一篇:关于error:Cannot assign to 'self' outside of a method in the init family


下一篇:关于error:Cannot assign to 'self' outside of a method in the init family