Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/215.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android在另一个布局元素上显示一个布局元素_Android_Android Layout_Navigation Drawer_Slidingpanelayout - Fatal编程技术网

Android在另一个布局元素上显示一个布局元素

Android在另一个布局元素上显示一个布局元素,android,android-layout,navigation-drawer,slidingpanelayout,Android,Android Layout,Navigation Drawer,Slidingpanelayout,我知道这类问题在这里已经讨论过很多次了。但就我而言,他们没有一个为我工作。我在我的项目中使用导航抽屉。问题是滑动面板布局总是显示在导航抽屉上,但我想要的是相反的。这是目前的情况 如你所见,我看不到导航抽屉项目。滑动面板布局隐藏导航抽屉 这是我的密码 <?xml version="1.0" encoding="utf-8"?> <com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://sche

我知道这类问题在这里已经讨论过很多次了。但就我而言,他们没有一个为我工作。我在我的项目中使用导航抽屉。问题是滑动面板布局总是显示在导航抽屉上,但我想要的是相反的。这是目前的情况

如你所见,我看不到导航抽屉项目。滑动面板布局隐藏导航抽屉

这是我的密码

<?xml version="1.0" encoding="utf-8"?>

<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sliding_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="bottom"
    sothree:umanoDragView="@+id/dragView"
    sothree:umanoOverlay="false"
    sothree:umanoPanelHeight="68dp"
    sothree:umanoParalaxOffset="100dp"
    sothree:umanoShadowHeight="4dp">


    <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/drawerMainActivity"
        android:layout_width="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_height="match_parent">



        <FrameLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/containerView">

            <android.support.v7.widget.Toolbar
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="?android:attr/actionBarSize"
                android:background="?attr/colorPrimary"
                android:id="@+id/toolBar"
                android:fitsSystemWindows="true"
                android:theme="@style/ThemeOverlay.AppCompat.Dark"
                />

        </FrameLayout>


        <android.support.v7.widget.RecyclerView
            android:layout_width="240dp"
            android:layout_height="match_parent"
            android:id="@+id/recyclerView"
            android:scrollbars="vertical"
            android:background="#FFFFFF"
            android:layout_gravity="left"
            />

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


    <!-- SLIDING LAYOUT -->
    <LinearLayout
        android:id="@+id/dragView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#ffffff"
        android:clickable="true"
        android:focusable="false"

        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/name"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textColor="@android:color/holo_green_dark"
                android:gravity="center_vertical"
                android:paddingLeft="10dp"
                android:text="@string/slide"
                android:textSize="14sp" />

            <Button
                android:id="@+id/btn_hide"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center_vertical|right"
                android:paddingLeft="10dp"
                android:paddingRight="10dp"
                android:text="@string/hide"
                android:textSize="14sp" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#FFCCCC">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:layout_weight="1"
                android:scaleType="centerCrop"
                android:src="@drawable/image" />
        </LinearLayout>
    </LinearLayout>


</com.sothree.slidinguppanel.SlidingUpPanelLayout>


我怎样才能解决这个问题?因此,导航抽屉始终位于滑动面板布局的顶部。

要设置Z轴,必须对树进行排序。从文件中

这棵树大体上是按顺序记录和绘制的,父母都是按顺序绘制的 在孩子之前(即之后),按照顺序绘制兄弟姐妹 它们出现在树上。如果为视图设置了可绘制的背景, 然后视图将在调用其onDraw()方法之前绘制它。 可以使用自定义子图形替代子图形顺序 在ViewGroup中排序,并启用setZ(浮动)自定义Z值} 观点


因此,基本上将抽屉布局设置为最后一个。

将您的
抽屉布局设置为根元素,而不是您的
幻灯片布局设置为根元素。

您是否尝试过将
抽屉布局设置为根元素?@PPartisan谢谢,它现在正在工作。@PPartisan请您发表您的评论作为答案?