とをラップするをview
含む があります。中には、CoordinatorLayout
AppBarLayout
NestedScrollView
NestedScrollView
EditText
ソフト入力キーボードの表示と、view
.
通常のフラグを使用android:windowSoftInputMode="adjustResize"
すると、入力を非表示にする場合を除いて、すべてが正常に機能するようです。
入力を開いた状態 (画像 2) では、NestedScrollView
(退屈な灰色の背景) が縮小されているため、以前の「カバーされた」部分にスクロールできます。すべて良い。ただし、入力が非表示になると (画像 3)、NestedScrollView
はスペースを埋めるために成長せず、親であることがわかりますCoordinatorLayout
(フェッチする赤で色付けしました)。
私はこの答えを試しましたhttps://stackoverflow.com/a/31286789/726954、神秘的なタグを追加しましたandroid:layout_gravity="fill_vertical"
が、これは高さを制限するだけで、NestedScrollView
子要素を切り捨ててしまいます(ただし、拒否することで問題は修正されます)容器に補充します)。
何か足りないのですか、それともこれはCoordinatorLayout
これが私の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:background="@color/red_granate">
<android.support.design.widget.AppBarLayout
android:id="@+id/actionBarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<View
android:id="@+id/statusBarPadding"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/primary_material_dark"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/primary_material_dark"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:background="@color/grey"
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="2000dp">
<EditText
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_marginTop="1900dp"/>
</FrameLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>