Фоновый макет не работает с Навигатором - PullRequest
0 голосов
/ 13 января 2019

Я использую значок «Плавающий» в своей Деятельности, и я также хочу использовать Навигационный ящик в этой Деятельности, но когда я использую его, мой фоновый макет не работает. И когда я помещаю его в свой код, моя иконка отображается в списке меню. Пожалуйста, помогите, что мне делать. Я использую схему ограничений, но она здесь не отображается ...

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:floatingMenuActionButton="http://schemas.android.com/tools"
android:id="@+id/pai"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:background="#FFFFFF">



<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.design.widget.NavigationView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white"
        app:menu="@menu/navigation_menu"

        android:layout_gravity="start"
        app:headerLayout="@layout/nav_header"
        android:id="@+id/nv">

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

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

<android.support.constraint.Guideline
    android:id="@+id/gl_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="1.0"/>

<android.support.constraint.Guideline
    android:id="@+id/gl_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="1.0"/>

<rjsv.floatingmenu.floatingmenubutton.FloatingMenuButton
    android:id="@+id/fab_1"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="52dp"
    android:scaleType="centerInside"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    floatingMenuActionButton:dispositionEndAngle="360"
    floatingMenuActionButton:dispositionStartAngle="0"
    floatingMenuActionButton:subActionButtonRadius="200"
    android:layout_marginBottom="8dp"
    android:background="@drawable/poultary"
    app:layout_constraintBottom_toTopOf="@+id/gl_1">

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_2"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_3"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_4"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_5"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_6"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_7"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_8"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />


</rjsv.floatingmenu.floatingmenubutton.FloatingMenuButton>

->

1 Ответ

0 голосов
/ 14 января 2019

вы должны сделать основной макет в виде ящика, а затем включить в него макет ограничения

main_activity.xml

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.DrawerLayout 
    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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

        <include
            layout="@layout/your_constraint_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
        <android.support.design.widget.NavigationView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/white"
            app:menu="@menu/navigation_menu"

            android:layout_gravity="start"
            app:headerLayout="@layout/nav_header"
            android:id="@+id/nv">

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

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

your_constraint_layout

<?xml version="1.0" encoding="utf-8"?>
 <android.support.constraint.ConstraintLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:floatingMenuActionButton="http://schemas.android.com/tools"
 android:id="@+id/pai"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_gravity="center_vertical"
 android:background="#FFFFFF">


<android.support.constraint.Guideline
    android:id="@+id/gl_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="1.0" />

<android.support.constraint.Guideline
    android:id="@+id/gl_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="1.0" />

<rjsv.floatingmenu.floatingmenubutton.FloatingMenuButton
    android:id="@+id/fab_1"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_marginRight="32dp"
    android:layout_marginBottom="32dp"
    android:background="@drawable/poultary"
    android:scaleType="centerInside"
    app:layout_constraintBottom_toTopOf="@+id/gl_1"
    app:layout_constraintRight_toRightOf="parent"
    floatingMenuActionButton:dispositionEndAngle="360"
    floatingMenuActionButton:dispositionStartAngle="0"
    floatingMenuActionButton:subActionButtonRadius="200">

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_2"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_3"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_4"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_5"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_6"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_7"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />

    <rjsv.floatingmenu.floatingmenubutton.subbutton.FloatingSubButton
        android:id="@+id/fab_1_sub_fab_left_8"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@drawable/poultary" />


</rjsv.floatingmenu.floatingmenubutton.FloatingMenuButton>

...