Android利用shape实现各种简单的形状

Android利用shape实现各种简单的形状,第1张

概述一,概述我们在android开发中经常要用到图片,而一些简单的图片我们完全可以用shape形状drawable资源代替,使用shape有一个好处就是可以减小我们apk的大小,因为同样的效果,shape比图片更节省空间,好了,我们废话

一,概述

我们在androID开发中经常要用到图片,而一些简单的图片我们完全可以用shape形状drawable资源代替,使用shape有一个好处就是可以减小我们apk的大小,因为同样的效果,shape比图片更节省空间,好了,我们废话不多说,下面进入正题。

二,shape初识

shape是androID drawable资源中的一个重要的角色,drawable资源覆盖面广,它不仅代表图片,它可以是一个颜色,一个形状,因为shape其简单实用,下面我们来看一下shape形状的分类:

ectangle:

rectangle代表者矩形,它是shape默认的形状类型,即如果我们不在shape的androID:shape属性指定其类型时,默认是矩形,用它我们可以画一个矩形,圆角矩形,具体在下面会说道

oval:

ovel,椭圆,用它可以画椭圆,圆

line:

水平线,在使用该形状的时候,我们得给它指定stroke元素指定其宽度,不然在使用该形状的时候会报空指针异常

ring:

环形

下面我们来用上面说道的各种形状画图形,打造各种简单的形状

三,shape的使用

下面看看用shape画的一些简单的图形,之后我会按照图形说一下shape的各种属性以及一些要注意的问题:


1.实心长方形

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <!-- 设置固定填充色 --> <solID androID:color="#f00" /> <size androID:wIDth="60dp" androID:height="30dp"/></shape>

2.炫彩实心长方形

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="rectangle"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#00f" androID:centercolor="#0f0" androID:endcolor="#f00"></gradIEnt></shape>

3.长方形外框

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边 --> <stroke androID:wIDth="2dp" androID:color="#f00" ></stroke></shape>

4.虚线长方形外框

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边 --> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"></stroke></shape>

5.椭圆虚线外框

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边 --> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"></stroke> <corners androID:radius="15dp"/></shape>

6.实心长方体切圆角

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <!-- 设置固定填充色 --> <solID androID:color="#f00" /> <size androID:wIDth="60dp" androID:height="30dp"/> <corners androID:radius="10dp"/></shape>

7.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="rectangle"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#f00" androID:centercolor="#0f0" androID:endcolor="#00f" androID:gradIEnTradius="60" androID:type="radial"></gradIEnt></shape>

8.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边 --> <stroke androID:wIDth="2dp" androID:color="#f00" ></stroke> <corners androID:radius="15dp"/></shape>

9.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#f00" androID:centercolor="#0f0" androID:endcolor="#00f" androID:type="sweep"></gradIEnt></shape>

10.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" > <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边 --> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"></stroke> <corners androID:radius="15dp" androID:topRighTradius="0dp" androID:bottomrighTradius="0dp"/></shape>

11.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="oval"> <!-- 设置固定填充色 --> <solID androID:color="#f00" /> <size androID:wIDth="60dp" androID:height="30dp"/></shape>

12.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="oval"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置渐变色 --> <gradIEnt androID:startcolor="#00f" androID:centercolor="#0f0" androID:endcolor="#f00"></gradIEnt></shape>

13.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="oval"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边色 --> <stroke androID:wIDth="2dp" androID:color="#f00" ></stroke></shape>

14.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="oval"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#f00" androID:centercolor="#0f0" androID:endcolor="#00f" androID:gradIEnTradius="60" androID:type="sweep"></gradIEnt></shape>

15.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="oval"> <size androID:wIDth="60dp" androID:height="30dp"/> <!-- 设置描边色 --> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"></stroke></shape>

16.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:innerRadius="20dp" androID:shape="ring" androID:thickness="2dp" androID:useLevel="false" > <!-- 设置固定填充色 --> <solID androID:color="#f00" /> <size androID:height="44dp" /></shape>

17.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:innerRadius="20dp" androID:shape="ring" androID:thickness="2dp" androID:useLevel="false" > <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#00f" androID:centercolor="#0f0" androID:endcolor="#f00"/> <size androID:height="44dp" /></shape>

18.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:innerRadius="20dp" androID:shape="ring" androID:thickness="2dp" androID:useLevel="false" > <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#00f" androID:centercolor="#0f0" androID:endcolor="#f00"/> <size androID:height="44dp" /> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"/></shape>

19.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:innerRadius="20dp" androID:shape="ring" androID:thickness="2dp" androID:useLevel="false" > <size androID:height="44dp" /> <stroke androID:wIDth="2dp" androID:color="#f00" androID:dashWIDth="5dp" androID:dashGap="5dp"/></shape>

20.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:innerRadius="20dp" androID:shape="ring" androID:innerRadiusRatio="8" androID:useLevel="false" > <!-- 设置渐变填充色 --> <gradIEnt androID:startcolor="#00f" androID:centercolor="#0f0" androID:endcolor="#f00"/> <size androID:height="44dp" /></shape>

21.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="line"> <stroke androID:wIDth="1dp" androID:color="#f00"/> <size androID:height="2dp"></size></shape>

22.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID"  androID:shape="line"> <stroke androID:wIDth="1dp" androID:color="#f00"/> <size androID:height="10dp"></size></shape>

23.

<shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:shape="line" > <stroke androID:dashGap="8px" androID:dashWIDth="8px" androID:wIDth="1dp" androID:color="#f00" /> <size androID:height="30dip" /></shape>

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对编程小技巧的支持。

总结

以上是内存溢出为你收集整理的Android利用shape实现各种简单的形状全部内容,希望文章能够帮你解决Android利用shape实现各种简单的形状所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存