Android shape左边框、上下边框、任意边框,左边框与下边框的颜色不同
其实与ps的图层有些类似,只要一层+一层+一层就可以实现
<?xml version="1.0" encoding="UTF-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <!-- 边框颜色值 --> <item> <shape> <solid android:color="#ff0000"/> </shape> </item>
<!-- 主体背景颜色值 --> <item android:left="@dimen/space_6" android:top="0dp" android:right="0dp" android:bottom="1dp"> <shape> <solid android:color="#666666"/> </shape> </item> <!-- 主体背景颜色值 --> <item android:left="@dimen/space_6" android:top="0dp" android:right="0dp" android:bottom="0dp"> <shape> <solid android:color="#ffffff"/> </shape> </item> </layer-list>
道法自然