0

Relative Layout の layout と layout1 は add を表示するために使用され、top add は完全に機能していますが、bottom add が下部に表示されることもあれば、画面の中央と下部の間に表示されることもあります。何が問題なのかわかりません。

   <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical"
   android:background="@drawable/zbackground" >
   <RelativeLayout
        android:id="@+id/layout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true">
  </RelativeLayout>

   <RelativeLayout
  android:id="@+id/layout1"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_alignParentBottom="true" >
   </RelativeLayout>

     <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_above="@+id/textView2"
    android:layout_marginTop="10dip"
    android:text="@string/about_text1"
    android:textStyle="bold"
    android:textColor="#ffffffff"
    android:textSize="20dip" />

    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_above="@+id/textView3"
    android:textStyle="bold"
    android:textColor="#ffffffff"
    android:textSize="20dip" />
    <TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:textStyle="bold"
    android:textColor="#ffffffff"
    android:textSize="20dip" />

     <TextView
    android:id="@+id/textView4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_below="@+id/textView3"
    android:textStyle="bold"
    android:textColor="#ffffffff"
    android:textSize="20dip" />

  </RelativeLayout>
4

1 に答える 1