如何将FloatingActionButton和EditText同时保存在键盘上方?

时间:2016-05-08 07:47:01

标签: android android-layout floating-action-button

我目前正在努力摆弄我的布局并陷入困境。我有两个EditTexts,第二个可以是多行,我希望我的布局可以在添加新行并显示键盘时进行调整。而且我也希望我的FAB始终保持在键盘上方。基本上我想在写一个笔记时有与Google Keep中相同的行为。

以下是我的布局:

activity_fragment.xml

<?xml version="1.0" encoding="utf-8"?>
    <android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            app:layout_scrollFlags="scroll|enterAlways"/>

    </android.support.design.widget.AppBarLayout>

    <!-- app:layout_behavior must be inside CoordinatorLayout (not in fragment) for correct scroll behavior -->
    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/activity_horizontal_margin"
        app:layout_anchor="@id/fragment_container"
        app:layout_anchorGravity="bottom|right|end"/>

</android.support.design.widget.CoordinatorLayout>

fragment_note_detail.xml

<?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:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <EditText
        android:id="@+id/fragment_note_detail_title_edittext"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/recyclerview_margin"
        android:layout_marginLeft="@dimen/recyclerview_margin"
        android:layout_marginRight="@dimen/recyclerview_margin"
        android:hint="@string/title_hint"
        android:textStyle="bold"
        android:singleLine="true"
        android:imeOptions="actionNext"
        tools:text="Title goes here"/>

    <EditText
        android:id="@+id/fragment_note_detail_description_edittext"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="@dimen/recyclerview_margin"
        android:hint="@string/description_hint"
        android:gravity="top|start"
        tools:text="Description goes here"/>

</LinearLayout>

当我设置

android:windowSoftInputMode="adjustResize"

对于特定活动,然后FAB保持在键盘上方,但是当添加新行时,第二个EditText会被键盘重叠。

当我设置

android:windowSoftInputMode="adjustPan"

然后EditText和光标始终位于键盘上方,但键盘始终与FAB重叠。

我如何同时拥有两者(FAB和光标始终可见)?

1 个答案:

答案 0 :(得分:0)

您可以在 windowSoftInputMode 中设置2个或更多方法,如文档中所述:Handling Input Method Visibility

<activity android:windowSoftInputMode="stateVisible|adjustResize" ...