0

相対レイアウトと背景を使用すると問題が発生します。を設定android:layout_height="match_parent"したのですが、背景が画面全体(画面の高さ)に収まらず、下の部分が白く設定されています。画面の上部にアイテムを配置しているだけですが、それでもこの動作が正しいとは思いません。

私のコードxml:

<?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:orientation="vertical"
android:background="@drawable/background" >


<TextView
    android:id="@+id/title"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:text="@string/title"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="@dimen/dim_b"
    android:layout_marginLeft="@dimen/dim_a"
    android:layout_marginRight="@dimen/dim_a" />

<EditText 
    android:id="@+id/insert"
    android:hint="@string/insert"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/title"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="@dimen/dim_c"
    android:layout_marginLeft="@dimen/dim_a"
    android:layout_marginRight="@dimen/dim_a"
    android:inputType="textPassword" />

<Button 
    android:id="@+id/accept"
    android:text="@string/accept"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/insert"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="@dimen/dim_d"
    android:layout_marginLeft="@dimen/dim_a"
    android:layout_marginRight="@dimen/dim_a" />

</RelativeLayout>
4

2 に答える 2

2

1.First you are use Relative Layout so why you need orientation="verticlal" remove from top of the Relative layout

2.Edittext ,Button like this android:layout_below="@+id/title" not android:layout_below="@id/title"

于 2012-12-12T18:08:42.923 に答える
0

試してください: Android:layout_height="fill_parent"

match_parent は API レベル 8 以上です。

于 2012-12-12T18:00:19.507 に答える