コードに相対レイアウトがあり、各項目のチェック ボックスを含むリスト ビューを使用しました。私はそれでLayoutInflaterを使用しています。一度だけのバイトンを追加したい。しかし、ボタンを追加すると、リストのすべてのアイテムが表示されますが、画面の下部に一度だけ表示されるはずです。ここにレイアウトの XML があります。
<?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="horizontal" >
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="14dp"
android:textSize="25sp" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
問題は、ボタンも追加したいということです。AnyHelp plz