我希望我的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>
答案 0 :(得分:2)
你只需要在java文件中写findViewById(R.id.appBar).bringToFront();
。
希望它对你有帮助吗?