Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.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_Xml_Android Layout_Floating Action Button_Recyclerview Layout - Fatal编程技术网

Android 浮动操作按钮未显示在顶部

Android 浮动操作按钮未显示在顶部,android,xml,android-layout,floating-action-button,recyclerview-layout,Android,Xml,Android Layout,Floating Action Button,Recyclerview Layout,我目前正在尝试制作一个浮动操作按钮,但是由于某些原因,它会在我的recylerView下不断渲染该按钮。我尝试过处理布局顺序、立面,甚至尝试在java代码中使用.bringToFront()方法 主要活动 <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.co

我目前正在尝试制作一个浮动操作按钮,但是由于某些原因,它会在我的recylerView下不断渲染该按钮。我尝试过处理布局顺序、立面,甚至尝试在java代码中使用
.bringToFront()
方法

主要活动

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

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

        <include android:id="@+id/toolbar_actionbar"
            layout="@layout/toolbar_default"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <include
            android:id="@+id/fab_layout"
            layout="@layout/fab_layout"
            android:layout_width="@dimen/fab_button_diameter"
            android:layout_height="@dimen/fab_button_diameter"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />

        <FrameLayout android:id="@+id/container"
           android:layout_width="match_parent"
           android:clickable="true" android:layout_height="match_parent"
           android:layout_below="@+id/toolbar_actionbar">

        <android.support.v7.widget.RecyclerView
           android:id="@+id/cardList"
           android:layout_width="match_parent"
           android:layout_height="match_parent" />

    </FrameLayout>

</RelativeLayout>

<!-- android:layout_marginTop="?android:attr/actionBarSize"-->
<com.android.expresso.expresso.ScrimInsetsFrameLayout android:id="@+id/scrimInsetsFrameLayout"
    android:layout_width="@dimen/navigation_drawer_width"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:layout_gravity="start"
    app:insetForeground="#4000"
    android:elevation="10dp">
    <fragment android:id="@+id/fragment_drawer"
        android:name="com.android.expresso.expresso.NavigationDrawerFragment"
        android:layout_width="@dimen/navigation_drawer_width"
        android:layout_height="match_parent" android:fitsSystemWindows="true"
        app:layout="@layout/fragment_navigation_drawer" />
</com.android.expresso.expresso.ScrimInsetsFrameLayout>

工厂布局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

    <ImageButton
        android:id="@+id/fab_image_button"
        android:layout_width="@dimen/fab_button_diameter"
        android:layout_height="@dimen/fab_button_diameter"
        android:background="@drawable/fab_shape"
        android:src="@drawable/btn_order_hub"/>

</FrameLayout>

fab_布局
应该是xml中的最后一个视图。绘图是按照xml的顺序进行的-您正在绘制FAB,在其他视图(容器)之后,它们将覆盖FAB

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

    <include android:id="@+id/toolbar_actionbar"
        layout="@layout/toolbar_default"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <FrameLayout android:id="@+id/container"
       android:layout_width="match_parent"
       android:clickable="true" android:layout_height="match_parent"
       android:layout_below="@+id/toolbar_actionbar">

        <android.support.v7.widget.RecyclerView
           android:id="@+id/cardList"
           android:layout_width="match_parent"
           android:layout_height="match_parent" />

        <include
            android:id="@+id/fab_layout"
            layout="@layout/fab_layout"
            android:layout_width="@dimen/fab_button_diameter"
            android:layout_height="@dimen/fab_button_diameter"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />

    </FrameLayout>
</RelativeLayout>

fab_布局
应该是xml中的最后一个视图。绘图是按照xml的顺序进行的-您正在绘制FAB,在其他视图(容器)之后,它们将覆盖FAB

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

    <include android:id="@+id/toolbar_actionbar"
        layout="@layout/toolbar_default"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <FrameLayout android:id="@+id/container"
       android:layout_width="match_parent"
       android:clickable="true" android:layout_height="match_parent"
       android:layout_below="@+id/toolbar_actionbar">

        <android.support.v7.widget.RecyclerView
           android:id="@+id/cardList"
           android:layout_width="match_parent"
           android:layout_height="match_parent" />

        <include
            android:id="@+id/fab_layout"
            layout="@layout/fab_layout"
            android:layout_width="@dimen/fab_button_diameter"
            android:layout_height="@dimen/fab_button_diameter"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />

    </FrameLayout>
</RelativeLayout>


晶圆厂还应具有标高,这将使其在相关设备上处于“顶部”。没错,但Matthew Steinhardt没有在任何位置使用
标高,因此所有内容都将使用
标高绘制
=0dp。如果他只使用
高程
,而不在晶圆厂中重新排序,则也应使用高程,这将使其在相关设备上处于“顶部”。没错,但Matthew Steinhardt没有在任何位置使用
高程
,因此所有内容都将使用
高程
=0dp绘制。如果他只使用
高程
而不在切换到官方浮动操作按钮中重新排序。你可以用官方的NavigationView更改ScriminetsFrameLayout。谢谢,这可能是一个愚蠢的疏忽,但我似乎无法通过xml使用浮动操作按钮。。。我需要导入一些特殊的东西吗?切换到官方浮动操作按钮。你可以用官方的NavigationView更改ScriminetsFrameLayout。谢谢,这可能是一个愚蠢的疏忽,但我似乎无法通过xml使用浮动操作按钮。。。我需要进口一些特别的东西吗?