我的活动中有listview组件,我设法使用活动的布局xml文件添加它下面的按钮。但问题是,在横向时,按钮不可见,因为列表视图很长。
那么有没有办法添加简单的OK按钮来关闭当前活动,但在横向或纵向,模式中可见?
我知道这个页面listview-voggela但实现起来有点复杂,而且我不是专家。所以我正在寻找简单的解决方案。感谢
答案 0 :(得分: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>