小编典典

形状 XML 中的边框

all

我正在尝试制作一个可用于按钮的drawable。我希望它有这种颜色,周围有 2px 的边框。

一切都很好,只是我无法显示边框......

<?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="2dp" 
        color="#ff00ffff" />

</shape>

阅读 140

收藏
2022-08-19

共1个答案

小编典典

看起来您忘记了颜色属性的前缀。尝试

 <stroke android:width="2dp" android:color="#ff00ffff"/>
2022-08-19