我在使用FloatingActionButton和协调布局时遇到问题。我在布局中有一个Edittext,当键盘显示时,我的floatActionButton随键盘一起移动并位于其顶部。我希望它在键盘后面保持坚硬而不随其移动Keybaord。
iv尝试更改协调布局的高度,但是没有用。
<android.support.v4.widget.DrawerLayout
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"
android:id="@+id/maDL1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/maCL1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:id="@+id/maABL1"
android:layout_width="match_parent"
android:layout_height="256dp"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/maCTL1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<EditText
android:id="@+id/maET1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/s1"
android:inputType="textWebEditText"
android:paddingRight="35dp" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/maRV1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:paddingBottom="50dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:layout_margin="16dp"
android:src="@drawable/ic_power_settings_new_white_24dp" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/maNV1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:menu="@menu/mainpopup" />
</android.support.v4.widget.DrawerLayout>
这是它的外观。 正常时间:https://pasteboard.co/I8SGJeS.jpg 当键盘出现时: https://pasteboard.co/I8SCKpa.jpg