私はボタンに使用するdrawableを作ろうとしています。私はそれに2pxの境界線を付けてこの色付けをしたいと思います。あなたは色の属性に接頭辞を忘れてしまったように見えますボーダーの形xml
私が表示されるまでに境界線を得ることができない以外すべてがうまく動作します...
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient android:startColor="@color/bar_clicked_dark"
android:endColor="@color/bar_clicked_light"
android:angle="90"/>
<corners android:bottomLeftRadius="0dp"
android:topLeftRadius="15dp"
android:bottomRightRadius="15dp"
android:topRightRadius="0dp" />
<stroke android:width="2px"
color="#ff00ffff" />
</shape>