这个GIF几乎显示了我在说什么:
我的应用程序中存在一个相当复杂的DrawerLayout-> CoordinatorLayout-> ViewPager-> Fragment-> RecyclerView情况。
当用户长按RecyclerView中的一个项目时,它将广播发送到ParentActivity,然后通知BottomSheet出现。
通常它可以正常工作,但有时不出现BottomSheet。我有一个FrameLayout充当ParentActivity和ViewPager之间的叠加层。单击“覆盖”时,它告诉BottomSheet折叠。您可以在上面的GIF中看到,在未显示BottomSheet的情况下,它仍会在折叠时设置动画。
此行为在我的Nexus 5 Genymotion(API 21)模拟器上经常发生。在实际设备上,它几乎永远不会发生,但有时会发生。
我注意到的是,如果长按并按住直到出现BottomSheet,它就会一直出现。当我在注册长按后立即释放时,BottomSheet可能不会出现。
我相当确定这是RecyclerView以某种方式发生干扰的情况,但是我真的无法弄清楚为什么或如何发生。任何调试技巧将不胜感激。
供引用的是有问题的布局:
<android.support.v4.widget.DrawerLayout android:id="@+id/drawer_layout"
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:background="@color/gray"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/green"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.TabLayout
android:id="@+id/budget_display_mode_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/green"
android:elevation="4dp"
android:visibility="gone"
app:tabGravity="fill"
app:tabIndicatorColor="@color/green"
app:tabMode="fixed" />
</LinearLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:orientation="vertical" />
</FrameLayout>
<FrameLayout
android:id="@+id/primary_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
android:background="@null"
android:orientation="vertical">
<ProgressBar
android:id="@+id/progress"
style="@style/ProgressBar"/>
</FrameLayout>
<LinearLayout
android:id="@+id/full_screen_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:background="@color/blackLight"
android:orientation="vertical"/>
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="true"
android:background="@color/gray"
android:orientation="vertical"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<TextView
android:id="@+id/bottom_edit"
style="@style/BottomSheetButton"
android:text="@string/option 1"/>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/nav_list"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="left|start"
android:background="@color/kEDColorGrayLightest" />
</android.support.v4.widget.DrawerLayout>
打开ViewPager时,将
primaryView
和content
设置为View.GONE
。这是触发BottomSheet的接收器:
private final BroadcastReceiver modifyBudgetItemBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(final Context context, final Intent intent) {
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
fullScreenOverlay.setVisibility(View.VISIBLE);
}
};
更新:我有一个次优的解决方法。我有BottomSheetBehavior状态监听器,它等待BottomSheet展开,并且它执行
bottomSheet.requestLayout()
,这至少导致工作表出现。但是,体验很差,因为纸张似乎在“闪烁”而不是向上滑动。 requestLayout
的变通方法似乎在真实设备上不会产生闪烁。 最佳答案
这是由Google开发人员讨论的已知问题。在某些Pre-Lollipop设备上,底页无法正常工作
经过一天的研发,我找到了解决方案。试试这个
ViewCompat.postOnAnimation(yourCoordinator, new Runnable() {
@Override
public void run() {
ViewCompat.postInvalidateOnAnimation(yourCoordinator);
}
});
初始化 View 后放入此代码