我有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"
/>
這是您的整個佈局的代碼? –
是的,這是我的佈局 –