Android Paint画一个方框矩形.rar

时间:2022-07-30 12:16:28
【文件属性】:

文件名称:Android Paint画一个方框矩形.rar

文件大小:31KB

文件格式:RAR

更新时间:2022-07-30 12:16:28

Android源码-UI界面实例

Android Paint画一个方框矩形,要使用到触笔事件及线程的相关操作,绘制绿色实心矩形和黄色的方框矩形:   /* 同样是设置颜色 */   mPaint.setColor(Color.rgb(255, 0, 0));   /* 提取颜色 */   Color.red(0xcccccc);   Color.green(0xcccccc);   /* 设置paint的颜色和Alpha值(a,r,g,b) */   mPaint.setARGB(255, 255, 0, 0);   /* 设置paint的Alpha值 */   mPaint.setAlpha(220);   /* 这里可以设置为另外一个paint对象 */   // mPaint.set(new Paint());   /* 设置字体的尺寸 */   mPaint.setTextSize(14);   // 设置paint的风格为“空心”.   // 当然也可以设置为“实心”(Paint.Style.FILL)   mPaint.setStyle(Paint.Style.STROKE);   // 设置“空心”的外框的宽度。   mPaint.setStrokeWidth(5);   /* 得到Paint的一些属性 */   Log.i(TAG, "paint的颜色:" mPaint.getColor());   Log.i(TAG, "paint的Alpha:" mPaint.getAlpha());   Log.i(TAG, "paint的外框的宽度:" mPaint.getStrokeWidth());   Log.i(TAG, "paint的字体尺寸:" mPaint.getTextSize());   /* 绘制一个矩形 */   // 肯定是一个空心的举行   canvas.drawRect((320 - 80) / 2, 20, (320 - 80) / 2 80, 20 40, mPaint);   /* 设置风格为实心 */   mPaint.setStyle(Paint.Style.FILL);   mPaint.setColor(Color.GREEN);   /* 绘制绿色实心矩形 */


【文件预览】:
codesc.net
----绘制绿色实心矩形()
--------bin()
--------res()
--------assets()
--------default.properties(449B)
--------gen()
--------src()
--------.project(850B)
--------.classpath(280B)
--------AndroidManifest.xml(695B)

网友评论