我想爲我的Android應用程序的介紹一個圖像開始前奏,所以我想這樣做,以這種方式:與Android應用
這是我intro.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/logo_inesc" />
</LinearLayout>
並想象我的main.xml與一些菜單和圖像。
當用戶啓動應用程序時,我想先向他展示一個演示文件的圖像,然後是帶有選項和應用程序的應用程序本身。
我做這在我的活動:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.intro);
try {
Thread.sleep(6000); //Intro image will be shown for 6 seconds
setContentView(R.layout.home);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我不知道這是做正確的程序,佈局正在發生變化正確,但圖像沒有被顯示。有人知道爲什麼嗎?
問候。
您是否在嘗試介紹該應用?如果是這樣,試試這個庫,https://github.com/PaoloRotolo/AppIntro – 2015-09-10 08:02:11