无法确定在各种布局之间放置进度条的位置

时间:2015-09-15 11:37:15

标签: android drawerlayout androiddesignsupport android-coordinatorlayout

我有一个活动,其中我使用了FrameLayout,DrawerLayout,RelativeLayout和CoordinatorLayout。
现在我想添加这个水平进度条:

<ProgressBar
            android:id="@+id/progressToolbar"
            style="?android:attr/progressBarStyleHorizontal"
            android:indeterminateOnly="true"
            android:layout_width="match_parent"
            android:layout_height="8dp"
            />


但是,我不知道在我的代码中将它放在哪里,以便它出现在回收器视图上方和工具栏下方?
我的活动xml文件如下:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:fab="http://schemas.android.com/tools"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.v4.widget.DrawerLayout
        android:id="@+id/DrawerLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:elevation="7dp"
        android:fitsSystemWindows="true">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <ProgressBar
                android:id="@+id/progressBar"
                style="?android:attr/progressBarStyle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:visibility="visible" />
        </RelativeLayout>

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

            <include
                android:id="@+id/app_bar_layout"
                layout="@layout/pmp_toolbar" />

            <android.support.v7.widget.RecyclerView
                android:id="@+id/pmp_list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scrollbars="vertical"
                app:layout_behavior="@string/appbar_scrolling_view_behavior" />
        </android.support.design.widget.CoordinatorLayout>


        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:fitsSystemWindows="true"
            app:menu="@menu/menu_navigation_drawer" />

    </android.support.v4.widget.DrawerLayout>


    <com.getbase.floatingactionbutton.FloatingActionsMenu
        android:id="@+id/rignt_bottom_floating_action_menu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_gravity="bottom|right"
        android:layout_margin="@dimen/fab_margin"
        android:elevation="12dp"
        fab:fab_addButtonColorNormal="@color/pink"
        fab:fab_addButtonColorPressed="@color/pink_pressed"
        fab:fab_addButtonPlusIconColor="@color/white"
        fab:fab_icon="@drawable/ic_filter"
        fab:fab_labelStyle="@style/menu_labels_style">

        <com.getbase.floatingactionbutton.FloatingActionButton
            android:id="@+id/action_a"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            fab:fab_colorNormal="@color/FF4081"
            fab:fab_colorPressed="@color/green_pressed"
            fab:fab_icon="@drawable/ic_filter"
            fab:fab_title="By Price" />


        <com.getbase.floatingactionbutton.FloatingActionButton
            android:id="@+id/action_c"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            fab:fab_colorNormal="@color/FF4081"
            fab:fab_colorPressed="@color/green_pressed"
            fab:fab_icon="@drawable/ic_filter"
            fab:fab_title="By Rating" />
    </com.getbase.floatingactionbutton.FloatingActionsMenu>

</FrameLayout>

任何答案都会感激不尽,因为我已经浪费了很多时间。

0 个答案:

没有答案