在Frgament中制作工具栏Transparant

时间:2017-05-26 07:13:06

标签: android material-design toolbar

我想让片段中的工具栏透明,

我在这里附上了图片,在这里我无法看到完整的图像,

我可以从某人那里获得帮助来解决这个问题吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

添加新款式

<style name="CustomActionBar" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="android:windowActionBarOverlay">true</item>
    <!-- Support library compatibility -->
    <item name="windowActionBarOverlay">true</item>
</style>

设置为工具栏

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:theme="@style/CustomActionBar"/>