Android启动画面的实现方法
程序员文章站
2022-07-03 19:02:32
本文实例讲述了android启动画面的实现方法。分享给大家供大家参考。具体分析如下:
在应用程序中经常用到启动画面,会启动一个后台线程为主程序的运行准备资源。
andr...
本文实例讲述了android启动画面的实现方法。分享给大家供大家参考。具体分析如下:
在应用程序中经常用到启动画面,会启动一个后台线程为主程序的运行准备资源。
android要实现启动画面可以这样做:
这是splash.xml布局文件的代码:
复制代码 代码如下:
<linearlayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical">
<imageview android:layout_height="fill_parent" android:layout_width="fill_parent" android:scaletype="fitcenter" android:src="@drawable/splash"></imageview>
</linearlayout>
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent" android:orientation="vertical">
<imageview android:layout_height="fill_parent" android:layout_width="fill_parent" android:scaletype="fitcenter" android:src="@drawable/splash"></imageview>
</linearlayout>
放一个imageview加载启动画面图片
splashactivity作为主视图启动:
复制代码 代码如下:
/** called when the activity is first created. */
@override
public void oncreate(bundle savedinstancestate) {
super.oncreate(savedinstancestate);
setcontentview(r.layout.splash);
handler x = new handler();
x.postdelayed(new splashhandler(), 2000);
}
class splashhandler implements runnable{
public void run() {
startactivity(new intent(getapplication(),mainactivity.class));
splashactivity.this.finish();
}
}
@override
public void oncreate(bundle savedinstancestate) {
super.oncreate(savedinstancestate);
setcontentview(r.layout.splash);
handler x = new handler();
x.postdelayed(new splashhandler(), 2000);
}
class splashhandler implements runnable{
public void run() {
startactivity(new intent(getapplication(),mainactivity.class));
splashactivity.this.finish();
}
}
希望本文所述对大家的android程序设计有所帮助。