自定义view时解析图片的方式大致有三种,分别是:使用BitmapFactory解析图片,使用BitmapDrawable解析图片和使用InputStream和BitmapDrawable解析图片。下面是详细实现方法。
/**
* 使用BitmapFactory解析图片
*
* @param canvas
* 画布
*/
public void useBitmapFactory(Canvas canvas)
{
// 定义画笔
Paint paint = new Paint();
// 获取资源流
Resources rec = getResources();
InputStream in = rec.openRawResource(R.drawable.haha);
// 设置图片
Bitmap bitmap = BitmapFactory.decodeStream(in);
// 绘制图片
canvas.drawBitmap(bitmap, 0, 20, paint);
}
/**
* 使用BitmapDrawable解析图片
*
* @param canvas
* 画布
*/
public void useBitmapDrawable(Canvas canvas)
{
// 定义画笔
Paint paint = new Paint();
// 获得资源
Resources rec = getResources();
// BitmapDrawable
BitmapDrawable bitmapDrawable = (BitmapDrawable) rec
.getDrawable(R.drawable.haha);
// 得到Bitmap
Bitmap bitmap = bitmapDrawable.getBitmap();
// 在画板上绘制图片
canvas.drawBitmap(bitmap, 20, 120, paint);
}
/**
* 使用InputStream和BitmapDrawable解析图片
*
* @param canvas
* 画布
*/
public void useInputStreamandBitmapDrawable(Canvas canvas)
{
// 定义画笔
Paint paint = new Paint();
// 获得资源
Resources rec = getResources();
// InputStream得到字符串
InputStream in = rec.openRawResource(R.drawable.haha);
// BitmapDrawable 解析数据流
BitmapDrawable bitmapDrawable = new BitmapDrawable(in);
// 得到图片
Bitmap bitmap = bitmapDrawable.getBitmap();
// 绘制图片
canvas.drawBitmap(bitmap, 100, 100, paint);
}