答案 0 :(得分:0)
在可绘制文件夹上为此内容创建一个新的Drawable资源文件:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- Bottom 2dp Shadow -->
<item>
<shape android:shape="rectangle" >
<solid android:color="#e1e1e1" />
</shape>
</item>
<!-- White Top color -->
<item android:bottom="3px" android:left="0px" android:right="2px" android:top="0px">
<shape android:shape="rectangle" >
<solid android:color="#FFFFFF" />
</shape>
</item>
</layer-list>
现在将此可绘制文件设置为背景视图ex:
<TextView
android:id="@+id/myview"
...
android:background="@drawable/yourBackground" />
现在,如果您愿意,可以自定义创建的可绘制资源