码迷,mamicode.com
首页 > 移动开发 > 详细

我的Android最佳实践之—— Android启动画面的实现方法

时间:2016-08-09 19:01:52      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

本文实例讲述了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>

放一个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();
         }
 }

希望本文所述对大家的Android程序设计有所帮助。

我的Android最佳实践之—— Android启动画面的实现方法

标签:

原文地址:http://www.cnblogs.com/scarecrow-blog/p/5754233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!