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>
4

1 に答える 1

0

あなたの問題はレイアウトにあるようです。RelativeLayout を使用して、他のすべてのコンテンツの上にプログレスバーを表示しようとしています。代わりに、FrameLayout のようなものを使用してこれを実現する必要があります。これにより、ビューを積み重ねることができます。その後、進行状況を示す必要がなくなったら、進行状況バーを非表示または非表示に設定できます。

xml を見ると、textview と imageview の両方が相対レイアウトの中央に配置されていることがわかります。それはうまくいきません。RelativeLayout は、互い (または親) に対して相対的に配置するためのものであり、2 つの子を同じ場所に貼り付けることはできません。

于 2012-11-07T04:53:43.633 に答える