内部に a と a がネストされていRelativeLayout
ますProgressBar
。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ファイルです: