我面临着CoordinatorLayout
,appbar_scrolling_view_behavior
和的组合的奇怪问题adjustResize
。
使用这种组合,我有一个可滚动的布局,当键盘出现并关闭时,键盘后面的区域变灰。如果我将标志设置为adjustPan
,则不会出现此问题,但我想将其保留为 adjustResize。下面是代码片段。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
style="@style/CollapsingToolbarLayoutStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
-----
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
如果有人能告诉我我到底做错了什么,那就太好了:)
谢谢