固定浮动动作按钮片段

时间:2017-07-03 08:14:04

标签: android floating-action-button

我有工厂,我希望固定在位置结束|右|底部。 但在我的片段中它隐藏并显示滚动回收器。 而不是显示片段中的所有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"
    />

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分: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>