2

ListView で RelativeLayout を使用すると問題が発生します。2 つの EditText フィールドを上下に配置したいのですが、それらは互いに完全に重なっています。各行に追加するテキストがあるため、横に並べることはできません。

私はそれを機能させるために余分なコードをすべて取り出してみたので、これが私が持っているものです:

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

<ListView android:id="@android:id/list" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</LinearLayout> 

ここに私の相対的なレイアウトがあります:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp" />


    <EditText
        android:id="@+id/room"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/time"
        android:textSize="20sp" />

</RelativeLayout>

どんな助けでも大歓迎です。ありがとうございました。

4

3 に答える 3

2

交換

android:layout_below="@id/subject"

android:layout_below="@+id/time"

そのため、id が room の EditText は、id が time の EditText の下になります。

于 2012-11-27T05:25:29.827 に答える
1

android:layout_below="@id/subject" を android:layout_below="@+id/time" に置き換える必要があります

于 2012-11-27T05:30:15.767 に答える
0

このユース ケースには LinearLayout を使用します

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical>

<EditText
    android:id="@+id/time"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="20sp" />


<EditText
    android:id="@+id/room"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="20sp" />

</LinearLayout>
于 2012-11-27T05:26:48.000 に答える