我有一个这个活动
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/padding_large"
android:background="@color/dark_grey">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/filter_activities"
android:background="@drawable/filter_btn"
android:textColor="@color/white"
android:textAlignment="gravity"
android:id="@+id/show_filter_btn"
android:padding="@dimen/padding_medium"
android:gravity="center"
android:layout_gravity="center"
android:drawableRight="@drawable/ic_settings"/>
</LinearLayout>
<FrameLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/top" />
</LinearLayout>
onCreate我将这个片段加载到FrameLayout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/types_spinner" />
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/classes_spinner" />
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/venues_list" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/search" />
</LinearLayout>
当我运行此应用程序页面显示如下
如您所见,按钮位于屏幕底部。 如何更改布局以使按钮始终位于底部,因此如果需要,ListView可以滚动。
答案 0 :(得分:1)
您应该使用RelativeLayout替换LinearLayout。用android:layout_alignParentBottom =“true”设置你的按钮,在linearLayout中设置你的视图的reste。这个linearLayout应该是layout_alignParentTop和layoutAbove你的第一个按钮:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/search"
android:id="@+id/my_button"
android:layout_alignParentBottom="true" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_above="@id/my_button">
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/types_spinner" />
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/classes_spinner" />
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/venues_list" />
</LinearLayout>
</RelativeLayout>