1

1 つのレイアウトで編集テキストを含み、別のレイアウトでリスト ビューを含む 2 つの線形レイアウトを使用しています。レイアウトにリストビューのオーバーラップが含まれていることを表示したいレイアウトに編集テキストが含まれています。XML でレイアウトを整理する方法

4

1 に答える 1

4

以下のようにレイアウトを整理する必要があります。

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:gravity="center">

    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <!-- Your EditText is here -->
    </LinearLayout>
    <LinearLayout 
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
        <!-- Your ListView is here -->
    </LinearLayout>
</RelativeLayout>

このようにして、ListView が EditText と重なっています。

于 2013-03-15T04:02:35.903 に答える