AppBarLayout view becomes empty when FAB (FloatingActionButton) is displayed in coordinator field

This issue occurs in Android version 4.2.1 and standby work on 5.0.2

I am using new layout with AppBarLayout layout and FloatingActionButton and recycler view

Whenever I view the recyclerview, the toolbar is hidden, which works fine, but when the toolbar is hidden and I press the FAB button and then scroll down, the toolbar view is not shown and again clicking on the fab button returns the toolbar.

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@android:color/darker_gray"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

</android.support.design.widget.AppBarLayout>

<FrameLayout
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

      

+3


source to share


2 answers


Try moving your ad FrameLayout

before AppBarLayout

. I'm not sure if this helps you, but as far as I know, views that have an attribute layout_behavior

must be declared before AppBarLayout

.



0


source


add this view invisible

as following i work for me.



<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@android:color/darker_gray"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
 <View
            android:id="@+id/appbar_bottom"
            android:layout_width="match_parent"
            android:layout_height="0.1dp"
            android:background="@android:color/transparent"
            android:visibility="invisible"/>
</android.support.design.widget.AppBarLayout>

      

0


source







All Articles