【发布时间】:2017-10-23 03:41:09
【问题描述】:
我希望我的 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>
【问题讨论】:
-
试试这个链接 - Transparent Toolbar like Uber
标签: android