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>
どんな助けでも大歓迎です。ありがとうございました。