嗨,我创建了一个 listActivity,其中包含一些数据行,并在屏幕底部(不是列表)放置了一个按钮。我的问题是,如果我的列表已满,因此需要滚动为了让其他行可以看到,按钮似乎是透明的,并且与列表的最后一个元素重叠。所以看起来并不令人愉快。你对如何解决这个问题有什么建议吗?有吗有什么方法可以让我的列表为底部按钮留出一些空间?我不想用页脚视图来实现它。我会发布 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" >
<DragNDrop.DragNDropListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_weight="1" >
</DragNDrop.DragNDropListView>
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:alpha="1"
android:drawableLeft="@drawable/back"
android:text="Return" />
</RelativeLayout>