如何使用笔划设置矩形边框的不同颜色

时间:2010-10-11 22:32:28

标签: android

     

如果只是为了使用笔划获得顶部边框或左边框。是否可以为不同的边框设置不同的宽度

1 个答案:

答案 0 :(得分:8)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
 <solid android:color="#FAFAFA"/>
 <stroke android:width="1px" android:color="#cccccc" />
 <corners android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp" 
     android:topLeftRadius="0dp" android:topRightRadius="0dp"
/>

</shape>

希望你能看到我正在使用的xml。感谢