android中shape类的子类_第1页
android中shape类的子类_第2页
android中shape类的子类_第3页
android中shape类的子类_第4页
android中shape类的子类_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、北京信息职业技术学院 | 范美英Android中Shape类的子类2Shape的继承关系Android中Shape类的子类| 概况3RectShape(矩形形状)Android中Shape类的子类| 各子类的介绍 /创建该形状的对象 RectShape rectShape = new RectShape(); /使用这种形状构造 ShapeDrawable drawable = new ShapeDrawable(rectShape); drawable.getPaint().setColor(Color.RED); drawable.getPaint().setStyle(Paint.Sty

2、le.FILL); view.setBackgroundDrawable(drawable); 4RoundRectShape(圆角矩形形状)Android中Shape类的子类| 各子类的介绍 float outerRadii = 20, 20, 40, 40, 60, 60, 80, 80;/外矩形 左上、右上、右下、左下 圆角半径 RectF inset = new RectF(100, 100, 200, 200);/内矩形距外矩形,左上角x,y距离, 右下角x,y距离 float innerRadii = 20, 20, 20, 20, 20, 20, 20, 20;/内矩形 圆角半径

3、 /RoundRectShape roundRectShape = new RoundRectShape(outerRadii, inset, innerRadii); RoundRectShape roundRectShape = new RoundRectShape(outerRadii, null, innerRadii); /无内矩形 ShapeDrawable drawable = new ShapeDrawable(roundRectShape); drawable.getPaint().setColor(Color.MAGENTA); drawable.getPaint().se

4、tAntiAlias(true); drawable.getPaint().setStyle(Paint.Style.STROKE);/描边 view.setBackground(drawable); 5OvalShape(椭圆形形状)Android中Shape类的子类| 各子类的介绍 OvalShape ovalShape = new OvalShape(); ShapeDrawable drawable = new ShapeDrawable(ovalShape); drawable.getPaint().setColor(Color.RED); drawable.getPaint().s

5、etStyle(Paint.Style.FILL_AND_STROKE); view.setBackgroundDrawable(drawable); 6ArcShape(扇形形状)Android中Shape类的子类| 各子类的介绍 ArcShape arcShape = new ArcShape(45, 270); /顺时针 开始角度45, 扫描的角度270 扇形 ShapeDrawable drawable = new ShapeDrawable(arcShape); drawable.getPaint().setColor(Color.RED); drawable.getPaint().

6、setStyle(Paint.Style.FILL); view.setBackgroundDrawable(drawable); 7ArcShapeAndroid中Shape类的子类| 各子类的介绍 ArcShape arcShape = new ArcShape(45, 270); /顺时针 开始角度45, 扫描的角度270 扇形 ShapeDrawable drawable = new ShapeDrawable(arcShape); Bitmap bitmap = (BitmapDrawable)getResources().getDrawable(R.drawable.aa).get

7、Bitmap(); BitmapShader bitmapShader = new BitmapShader(bitmap, Shader.TileMode.MIRROR, Shader.TileMode.REPEAT); Matrix matrix = new Matrix(); matrix.preScale(600.00f / bitmap.getWidth(), 600.00f /bitmap.getHeight(); bitmapShader.setLocalMatrix(matrix); drawable.getPaint().setShader(bitmapShader); vi

8、ew.setBackgroundDrawable(drawable); 8PathShape(自定义路径的形状)Android中Shape类的子类| 各子类的介绍 Path path = new Path(); path.moveTo(50, 0); path.lineTo(0, 50); path.lineTo(50, 100); path.lineTo(100, 50); path.lineTo(50, 0); PathShape pathShape = new PathShape(path, 200, 100); ShapeDrawable drawable = new ShapeDrawable(pathShape); drawable.getPaint().setColor(Color.RED); drawable.getPai

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论