1

我的活动中有 listview 组件,我设法使用活动的布局 xml 文件在其下方添加按钮。但问题是,当在横向时,按钮是不可见的,因为列表视图很长。

那么有没有办法添加简单的确定按钮来关闭当前活动但在横向或纵向模式下可见?

我知道这个页面listview-voggela,但实现起来有点复杂,而且我不是安卓专家。所以我正在寻找简单的解决方案。谢谢

4

1 回答 1

5
<?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">

<Button android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/okbutton"
    android:text="@string/hello" android:layout_alignParentBottom="true" />

<ListView android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:id="@+id/list"
    android:layout_alignParentTop="true" android:layout_above="@id/okbutton" />

</RelativeLayout>
于 2013-08-05T11:46:35.790 回答