我的代码中有相对布局,我在其中使用了包含每个项目复选框的列表视图。我正在使用LayoutInflater。我想添加一个只有一次的Bytton 。但是当我添加按钮时,它会出现所有列表项,但它应该只在屏幕底部出现一次。这是布局的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>
问题是我想在其中添加一个按钮。任何帮助请