2012-11-07 41 views
0

我創建啓動畫面與背景圖像和下一個活動,如果我運行項目啓動畫面出現不顯示圖像和進度並且不會顯示下一個活動,請幫助我恢復此問題。 我閃屏XML代碼這個創建啓動畫面與背景圖像和下一個活動,如果我運行項目啓動畫面出現不顯示圖像

輸入代碼在這裏:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true" 
     tools:context=".SplashScreenActivity" /> 

    <ImageView 
     android:id="@+id/splash" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:src="@drawable/splash" 
     android:visibility="visible" /> 

    <ProgressBar 
     android:id="@+id/progressBar1" 
     style="?android:attr/progressBarStyleLarge" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="32dp" /> 

</RelativeLayout> 

和我的清單文件是該

enter code here <uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="15" /> 

<uses-permission android:name="android.permission.INTERNET" /> 

<application 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name=".SplashScreenActivity" 
     android:label="@string/title_activity_splash_screen" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name=".MainActivity" 
     android:label="@string/title_activity_main" > 
     <meta-data 
      android:name="android.support.PARENT_ACTIVITY" 
      android:value="android.support.v4.app.FragmentActivity" /> 
    </activity> 
</application> 
+0

發佈您的清單文件。 –

+0

「與背景圖像和下一個活動」是什麼意思? – LuxuryMode

+0

兩個活動,一個是閃屏,下一個活動是mainActivity – user1796350

回答

0

在我看來,你的問題是你的佈局。您正嘗試使用RelativeLayout來完成在所有其他內容之上顯示進度條。相反,你需要使用類似於FrameLayout的東西來實現這一點。這將允許您將視圖堆疊在一起。然後,當您不再需要進度指示時,您可以將進度條設置爲不可見或消失。

如果你看@你的xml,你會發現你的textview和imageview都設置爲居中在relativelayout中。這不會奏效。 RelativeLayout是用於定位相對於彼此(或父母)的事物,並且不能將兩個孩子粘在同一個位置。

+0

我根據烏拉圭回合的答案試過了,但不是剛開答案 – user1796350