如果只是为了使用笔划获得顶部边框或左边框。是否可以为不同的边框设置不同的宽度
答案 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。感谢