在片段中添加浮动按钮

时间:2018-01-17 04:57:07

标签: android

我需要在标签片段中添加一个浮动按钮,下面是我的代码,请帮助 -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:baselineAligned="false"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <fragment
        android:id="@+id/fragment_tab2slider"
        android:name="com.s2s.doupnow.Tab2SliderFragment"
        android:layout_height="200dp"
        android:layout_width="match_parent"/>

    <fragment
        android:id="@+id/fragment_tab2horizontalgrids"
        android:name="com.s2s.doupnow.Tab2HorizontalGridsFragment"
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_weight="1" />

</LinearLayout>

我可以在这里添加浮动按钮代码,我试过但它在底部但在第二个片段下方,我需要它在第二个浮动按钮之上。

1 个答案:

答案 0 :(得分:1)

使用此代码并尝试:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <include layout="@layout/content_main" />

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

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