我有一个视图,我需要在下方和右方添加阴影。这是我的xml。 使用此xml,底部和右侧的边框看起来像一条线而不是阴影。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/darkGray"/>
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/darkGray"/>
</shape>
</item>
<item android:bottom="5px" android:right="5px">
<shape android:shape="rectangle">
<solid android:color="#FFFFFF" />
<stroke
android:width="1dp"
android:color="@color/lightGray"/>
</shape>
</item>
</layer-list>
如何使用上面的代码添加阴影?
答案 0 :(得分:0)
对于阴影,您可以在视图组件中使用elivation属性。检查下面显示的按钮显示阴影: -
<Button
android:elevation="5dp"/>