码迷,mamicode.com
首页 >  
搜索关键字:rectf    ( 29个结果
Android 自定义Drawable
1.使用BitmapShader实现图片圆角 public class CornerDrawable extends Drawable { private Paint mPaint; private Bitmap bmp; private RectF rectF; public CornerDraw
分类:移动开发   时间:2016-02-21 00:14:56    阅读次数:304
Matrix.setRectToRect
public boolean setRectToRect(RectF src, RectF dst, Matrix.ScaleToFit stf)src 坐标变换前的矩形dst 坐标变换后的矩形stf 矩形缩放选项由于提供坐标变换前后的参数可为任意矩形,这样的话,变换前后矩形的长宽比不一定一样,提供...
分类:其他好文   时间:2015-12-14 01:18:52    阅读次数:197
MFC 根据字符宽度居中
Gdiplus::Font font(_T("微软雅黑"), (Gdiplus::REAL)130); Gdiplus::RectF orgin(0.0f, 100.0f, nWidth, 200.0f); Gdiplus::StringFormat stringformat; ...
分类:编程语言   时间:2015-09-17 19:48:30    阅读次数:190
安卓笔记:Canvas绘图
1.Canvas常用方法:drawRect(RectF rect, Paint paint) //绘制区域,参数一为RectF一个区域 drawPath(Path path, Paint paint) //绘制一个路径,参数一为Path路径对象drawBitmap(Bitmap bitmap, Re...
分类:移动开发   时间:2015-08-18 16:06:45    阅读次数:252
Matrix矩阵连接变换应用的一个错误
RectF rf = new RectF(100, 100, 300, 300);Matrix m = new Matrix();float centerX = 500;float centerY = 500;float scale = 1.5f;m.preScale(scale, scale);m...
分类:其他好文   时间:2015-08-15 13:18:25    阅读次数:125
Matrix.mapRect()理解
RectF r = new RectF(50, 0, 100, 100);Log.d("m1", "-r.left = " + r.left + ", right = " + r.right + ", top = " + r.top + ", bottom = " + r.bottom);Matr....
分类:其他好文   时间:2015-08-12 16:23:02    阅读次数:1147
android 图片缩放
import android.content.Context; import android.graphics.Matrix; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.drawable.Drawable; import android.util.AttributeSet...
分类:移动开发   时间:2015-08-06 17:02:18    阅读次数:143
android自定义渐变圆环进度条
先看下效果:分析:比较常见于扫描结果、进度条等场景利用canvas.drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter, Paint paint)绘制圆弧Paint的一些属性定义粗细、颜色、样式等Line...
分类:移动开发   时间:2015-08-02 06:19:52    阅读次数:179
xml布局自定义SurfaceView模板
packagecom.dream.apm;importandroid.content.Context;importandroid.graphics.Canvas;importandroid.graphics.Color;importandroid.graphics.Paint;importandroid.graphics.RectF;importandroid.util.AttributeSet;importandroid.util.Log;importandroid.view.MotionEvent;imp..
分类:其他好文   时间:2015-05-27 19:28:22    阅读次数:176
xml布局自定义SurfaceView模板
package com.dream.apm; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; ...
分类:其他好文   时间:2015-05-27 15:46:16    阅读次数:218
29条   上一页 1 2 3 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!