2017-07-03 82 views
0

我有fab,我想固定在位置end | right | bottom。 但在我的片段它隱藏並顯示滾動回收。 並沒有顯示所有fab在片段,因爲我使用選項卡和工具欄。 請幫忙?固定浮動動作按鈕在片段

<RelativeLayout 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" 
      tools:context="com.example.hadi.music.fragment.ListStoryFragment"> 

<android.support.v7.widget.RecyclerView 
    android:id="@+id/rec_view_story" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    /> 

<android.support.design.widget.FloatingActionButton 
    android:id="@+id/fab" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="false" 
    android:layout_alignParentRight="true" 
    android:layout_alignParentTop="false" 
    android:layout_gravity="bottom|end" 
    android:layout_marginRight="20dp" 
    android:layout_marginBottom="40dp" 
    android:clickable="true" 
    android:src="@drawable/icon_plus" 
    app:fabSize="normal" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    /> 

+0

這是您的整個佈局的代碼? –

+0

是的,這是我的佈局 –

回答

0

刪除2線app:layout_behavior="@string/appbar_scrolling_view_behavior" android:layout_gravity="bottom|end"

+0

不工作它隱藏和顯示時再次滾動,而不是顯示全部晶圓廠 –

0

試試這個xml

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

     <android.support.v7.widget.RecyclerView 
      android:id="@+id/topic_list_recycler_view" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/add_button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="16dp" 
     android:src="@drawable/ic_add" 
     app:fabSize="normal" /> 

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