我有一个RelativeLayout
with aProgressBar
和一个TextView
嵌套在里面。的背景RelativeLayout
是由 9patch 图像定义的,但是子视图没有正确地遵循 9patch 图像的内容区域,相反,如果我的 9patch 图像中没有定义内容区域,它们只会出现在它们出现的位置。
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
android:background="@+drawable/loading_screen"
android:padding="0dip" >
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_above="@+id/progressBar1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="@string/loading"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@android:color/black" />
</RelativeLayout>
这是我的 9patch 文件: