活动adjustResize不起作用

时间:2016-10-14 11:36:48

标签: android

我在使用Activity调整softInputMode="adjustResize"布局的大小时出现问题。它实际上并没有调整大小,我也没有看到我的多行文字部分在键盘下面。如果我仅使用softInputMode="adjustPan",而不使用adjustResize,则布局会向上移动到输入位置,但我的fab位于键盘下方。这是我的布局层次结构:

<android.support.design.widget.CoordinatorLayout
    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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

  <android.support.design.widget.AppBarLayout
      android:layout_width="match_parent"
      android:layout_height="300dp"
      android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|snap">

     <android.support.v7.widget.Toolbar
          android:id="@+id/toolbar"
          android:layout_width="match_parent"
          android:layout_height="?attr/actionBarSize"
          app:layout_collapseMode="pin"
          app:layout_scrollFlags="scroll"/>
    </android.support.design.widget.CollapsingToolbarLayout>
  </android.support.design.widget.AppBarLayout>

  <android.support.v4.widget.NestedScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:descendantFocusability="beforeDescendants"
      android:focusableInTouchMode="true"
      android:scrollbars="vertical"
      app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <requestFocus/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin">

      <!-- Some another content -->

      <android.support.design.widget.TextInputLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content">

        <EditText
            android:id="@+id/field"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/feedback"
            android:inputType="textCapSentences|textMultiLine|textNoSuggestions"
            android:maxLines="20"
            android:minLines="10"/>
      </android.support.design.widget.TextInputLayout>
    </LinearLayout>
  </android.support.v4.widget.NestedScrollView>

  <android.support.design.widget.FloatingActionButton
      android:id="@+id/fab"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="bottom|end"
      android:layout_margin="@dimen/support_fab_margin"
      android:src="@drawable/ic_send"/>
</android.support.design.widget.CoordinatorLayout>

PS:如果我删除折叠工具栏,就可以正常工作。但我需要折叠工具栏((

1 个答案:

答案 0 :(得分:1)

尝试这种方式。这对我有用。

活动(在setcontentView之后):

this.getWindow()setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

AndroidMenifest.xml (包含EditText的活动):

机器人:windowSoftInputMode = “adjustResize”