標籤:
本文執行個體講述了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啟動畫面的實現方法