添加app:elevation属性时,工具栏会消失

时间:2017-10-23 03:41:09

标签: android

我希望我的AppCompat工具栏透明,零高度。

添加android:background属性可使工具栏透明,但添加app:elevation属性只会使工具栏完全消失;按钮和标题消失,如果背景为红色或其他纯色,则该颜色也会消失。

知道为什么吗?

这是我的AppBar

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:background="@android:color/transparent"
    app:elevation="0dp"
    >

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"


        />

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

1 个答案:

答案 0 :(得分:2)

你只需要在java文件中写findViewById(R.id.appBar).bringToFront();。 希望它对你有帮助吗?