我有一个RelativeLayout
,内嵌ProgressBar
和TextView
。 RelativeLayout
的背景由9patch图像定义,但是子视图没有正确地遵循9patch图像的内容区域,而是只有在我没有定义内容区域时它们才会出现在它们出现的位置。 9patch image。
这是我的布局:
<?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文件:
答案 0 :(得分:0)
9patch图像中定义的内容区域与UI组件的位置完全无关,它只定义了如何拉伸图像以填充指定区域。要使UI组件放置与9patch图像一致,您需要为RelativeLayout
添加适当的填充,我的意思是左/右/上/下填充大小应与您的四边相同9patch image。