前端之家收集整理的这篇文章主要介绍了
XML 实现android控件边框设置,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- 圆角 -->
corners
android:radius="9dp"
android:topLeftRadius="2dp"
android:topRightRadius
android:bottomLeftRadius
android:bottomRightRadius="2dp"/> 设置圆角半径 -->
/*****
通过不同角度,可以设置不同的形状,下面是左右半圆 begin
*****/
<!-- 设置矩形的四个角为弧形 -->
<corners
android:topLeftRadius="90dip"
android:topRightRadius="90dip"
android:bottomLeftRadius="90dip"
android:bottomRightRadius="90dip" />
/*****
通过不同角度,可以设置不同的形状 end
*****/
渐变 -->
gradient
android:startColor="@android:color/white"
android:centerColor="@android:color/black"
android:endColor
android:useLevel="true" android:angle="45" android:type="radial" android:centerX="0"
android:centerY android:gradientRadius="90"/>
间隔 padding
android:left
android:top
android:right android:bottom/>
各方向的间隔 大小 size
android:width="50dp"android:height="50dp" 宽度和高度 填充 solid
android:color="@android:color/white"
填充的颜色 描边,边框 stroke
android:dashWidth="1dp"android:dashGap</shape>
原文链接:https://www.f2er.com/xml/295914.html