圆角与边框的颜色(round corners with border color)

2019-08-02 09:35发布

我用下面的代码获取圆角以及彩色轮廓:

<?xml version="1.0" encoding="UTF-8"?> 

<gradient 
    android:startColor="@color/white" 
    android:endColor="@color/white" /> 

<corners 
    android:bottomRightRadius="2dp" 
    android:bottomLeftRadius="2dp" 
    android:topLeftRadius="2dp" 
    android:topRightRadius="2dp"/> 

<stroke
    android:width="5dip"
    android:color="@color/black" />

图像显示什么,我得到现在。 由于stroke ,圆角只能躺在上的布局的外边缘和所述黑色轮廓的内边缘具有尖锐边缘的矩形。 我怎样才能锋利的边缘转换成圆角?

Answer 1:

使用<shape>标签来创建以XML带有圆角的绘制。 (你可以做其他的东西与形状标记,具体定义颜色渐变为好)。

下面的代码可以帮助你:

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<solid android:color="#ffffffff"/>    

<stroke android:width="3dp"
        android:color="#ff000000"
        />

<padding android:left="1dp"
         android:top="1dp"
         android:right="1dp"
         android:bottom="1dp"
         /> 

<corners android:bottomRightRadius="7dp" 
         android:bottomLeftRadius="7dp" 
         android:topLeftRadius="7dp"
         android:topRightRadius="7dp"/> 
</shape>


Answer 2:

根据您的需要使用这个自定义。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@android:color/transparent" />
    <stroke
        android:width="4dp"
        android:color="@android:color/holo_blue_light" />
    <corners android:radius="6dp" />
</shape>


文章来源: round corners with border color