详解android shape的使用总结

详解android shape的使用总结,第1张

概述shape用于设定形状,可以在selector,layout等里面使用,有6个子标签,各属性如下: 

shape用于设定形状,可以在selector,layout等里面使用,有6个子标签,各属性如下: 

 <?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="2dp"    androID:bottomLefTradius="2dp"    androID:bottomrighTradius="2dp"/><!-- 设置圆角半径 -->    <!-- 渐变 -->  <gradIEnt    androID:startcolor="@androID:color/white"    androID:centercolor="@androID:color/black"    androID:endcolor="@androID:color/black"    androID:useLevel="true"    androID:angle="45"    androID:type="radial"    androID:centerX="0"    androID:centerY="0"    androID:gradIEnTradius="90"/>    <!-- 间隔 -->  <padding    androID:left="2dp"    androID:top="2dp"    androID:right="2dp"    androID:bottom="2dp"/><!-- 各方向的间隔 -->    <!-- 大小 -->  <size    androID:wIDth="50dp"    androID:height="50dp"/><!-- 宽度和高度 -->    <!-- 填充 -->  <solID    androID:color="@androID:color/white"/><!-- 填充的颜色 -->    <!-- 描边 -->  <stroke    androID:wIDth="2dp"    androID:color="@androID:color/black"    androID:dashWIDth="1dp"    androID:dashGap="2dp"/>  </shape>

填充:设置填充的颜色

间隔:设置四个方向上的间隔

大小:设置大小

圆角:同时设置五个属性,则Radius属性无效

androID:Radius="20dp"                 设置四个角的半径 androID:topLefTradius="20dp"              设置左上角的半径 androID:topRighTradius="20dp"           设置右上角的半径 androID:bottomLefTradius="20dp"      设置右下角的半径 androID:bottomrighTradius="20dp"    设置左下角的半径

描边:dashWIDth和dashGap属性,只要其中一个设置为0dp,则边框为实现边框

androID:wIDth="20dp"                               设置边边的宽度 androID:color="@androID:color/black"  设置边边的颜色 androID:dashWIDth="2dp"                         设置虚线的宽度 androID:dashGap="20dp"                          设置虚线的间隔宽度

渐变:当设置填充颜色后,无渐变效果。angle的值必须是45的倍数(包括0),仅在type="linear"有效,不然会报错。androID:useLevel 这个属性不知道有什么用。

angle对应值的起点如图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的详解android shape的使用总结全部内容,希望文章能够帮你解决详解android shape的使用总结所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1147514.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存