Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android啟動畫面的實現方法

Android啟動畫面的實現方法

編輯:Android開發實例

本文實例講述了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程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved