我创建了带有背景图像和下一个活动的启动画面,如果我运行项目启动画面而不显示图像和进度条而且不显示下一个活动,请帮我恢复此问题。 我的启动画面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)
对我来说,你的问题是你的布局。您正在尝试使用RelativeLayout来完成在所有其他内容之上显示进度条。相反,你需要使用类似FrameLayout的东西来实现这一目标。这将允许您将视图叠加在另一个之上。然后,当您不再需要进度指示时,可以将进度条设置为不可见或消失。
如果你看看你的xml,你会看到你将textview和imageview都设置为在relativelayout中居中。那不行。 RelativeLayout用于相对于彼此(或父对象)定位事物,并且您不能只将两个孩子放在同一个位置。