如何将笔划应用于按钮的左侧边框和右侧边框?在android。
我已应用以下代码,但它无效
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the main color -->
<item>
<shape>
<solid android:color="#EEEEEE" />
</shape>
</item>
<!-- This is the line -->
<item android:right="1dp">
<shape>
<solid android:color="#333333" />
</shape>
</item>
<item android:left="1dp">
<shape >
<solid android:color="#333333"/>
</shape>
</item>
</layer-list>
答案 0 :(得分:5)
你走在正确的轨道上。这样就可以了:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="#EEEEEE" />
</shape>
</item>
<!-- This is the line -->
<item android:right="1dp" android:left="1dp">
<shape>
<solid android:color="#333333" />
</shape>
</item>
</layer-list>
并将其用作按钮的背景。刚试过它 - 效果很好。
答案 1 :(得分:0)
我建议使用看起来像这样的9-patch drawable:
它具有所需的黑色边框,0x333颜色每侧1px,其余部分填充0xeee。 9个补丁按照它们应用的视图大小进行缩放。所以你可以将它用作背景或src