Android小部件AppBarLayout始终排在首位

时间:2016-02-13 11:20:11

标签: android android-toolbar android-relativelayout

您好我正在开发小型Android应用程序,我正在尝试使用AppBarLayout显示工具栏。我想在工具栏上显示一些视图。我试着这样做:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.nileshkashid.samplesearchbarapplication.Main2Activity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/toolbar_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@android:color/transparent"
            />

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

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:background="@android:color/holo_red_dark"
        ></RelativeLayout>

    <RelativeLayout
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="@android:color/holo_green_dark"
        ></RelativeLayout>


</RelativeLayout>

因此,在上面的布局中,两个相对布局都在我的AppBarLayout之下。但是我希望在toolbar_view之上显示它们。我错过了什么或做错了什么。需要一些帮助。谢谢。

2 个答案:

答案 0 :(得分:2)

我对这个解决方案真的不满意,但到目前为止我发现了这个问题: 尝试将android:elevation="5dp"添加到RelativeLayout下面的AppBarLayout

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="150dp"
    android:elevation="5dp"
    android:background="@android:color/holo_red_dark" />

这个问题也出现了,所以我会尝试对此进行更多研究。 (对我来说,魔法值是5dp,不要问为什么。)

或者,您可以将观看次数放在AppBarLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"    tools:context="com.example.nileshkashid.samplesearchbarapplication.Main2Activity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/toolbar_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <!-- You have to use a RelativeLayout here, because AppBarLayout is a LinearLayout. -->
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@android:color/transparent" />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="150dp"
                android:background="@android:color/holo_red_dark" />

        </RelativeLayout>

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

    ....

</RelativeLayout>

答案 1 :(得分:0)

AppBarLayout的标高为4dp,如果要在Z轴的App栏顶部显示视图,则必须根据https://material.io/design/environment/elevation.html给该视图标高大于4dp的值< / p>