我正在尝试构建如下布局:
如您所见,您可以添加新任务,但底部的按钮应始终可见。
这适用于以下XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:float="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:showIn="@layout/activity_edit_reminder">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/label_reminder_location"
android:textColor="@color/colorPrimary"
android:id="@+id/labelLocationSpinner" />
<Spinner
android:id="@+id/locationSpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/label_reminder_location"
android:minHeight="32dp" />
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_reminder_enabled"
android:textColor="@color/colorPrimary"
android:id="@+id/editReminderEnabled"
android:layout_marginTop="5dp"
android:enabled="true"
/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/editReminderContent"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:orientation="horizontal">
<Button
android:id="@+id/button_delete"
android:text="@string/button_delete"
android:onClick="deleteReminder"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".50"
android:layout_marginEnd="5dp"
android:background="@drawable/ripple_red"
android:textColor="#ffffff"
/>
<Button
android:id="@+id/button_save"
android:text="@string/button_save"
android:onClick="saveReminder"
style="?android:attr/borderlessButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".50"
android:layout_marginStart="5dp"
android:background="@drawable/ripple_green"
/>
</LinearLayout>
</LinearLayout>
如您所见,我在Scrollview中使用了EditText。然后,它将成为一个可滚动的清单,使用这个神奇的库:https://github.com/federicoiosue/checklistview
缺少的是,当用户编写任务时,我希望按钮留在键盘后面。现在,这将发生:
如果我将android:windowSoftInputMode="adjustNothing"
添加到该活动的清单中,那么当显示键盘时,它将与任务和按钮重叠。
答案 0 :(得分:0)
您应该在Android Manifest中使用
android:windowSoftInputMode="adjustPan"