使用调整大小调整的软键盘防止视图上升

时间:2018-02-24 19:49:10

标签: android android-softkeyboard

我的主要活动是android:windowSoftInputMode="adjustResize"我的片段的容器。我的布局包含底部按钮,使用软键盘,大多数片段逻辑都可以接受。但在一个片段中,我想阻止底部按钮的这种行为。如何在不改变android的情况下实现:windowSoftInputMode =" adjustResize"?我有这种结构的布局:

<?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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical">

    <include
        android:id="@+id/toolbar"
        layout="@layout/widget_toolbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dimen_56dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true" />

    <include
        android:id="@+id/container_company_header"
        android:layout_height="@dimen/dimen_55dp"
        android:layout_width="wrap_content"
        layout="@layout/container_company_header"
        android:layout_below="@+id/toolbar" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_service_review"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/container_bottom_buttons"
        android:layout_below="@+id/container_company_header"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager"
        tools:listitem="@layout/item_review_linear" />

    <include
        android:id="@+id/container_bottom_buttons"
        layout="@layout/container_bottom_buttons"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" />

</RelativeLayout>

0 个答案:

没有答案