使用自定义xml的材料操作栏背景

时间:2015-06-23 12:49:06

标签: android android-layout

enter image description here

您好,我需要为自定义视图背景制作一个操作栏,我尝试使用

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item>
    <shape android:shape="rectangle">
        <solid android:color="@color/button_gradient" />
    </shape>
</item>
<item android:top="1dp">
    <shape android:shape="rectangle">
        <solid android:color="@color/list_pressed" />
    </shape>
</item>
<item
    android:bottom="1dp"
    android:top="1dp">
    <shape android:shape="rectangle">
        <solid android:color="@color/menu_label" />
    </shape>
</item>

但我没有得到这个代码的影子。我应该改变什么来获得影子?

1 个答案:

答案 0 :(得分:1)

不推荐使用ActionBar。切换到工具栏,你应该得到你的影子。