我想做一个应用程序,我可以在同一个视图中导入多个图标resize
,我可以通过触摸每个图标,how I can resize icons by touch event ?
.
问问题
128 次
2 回答
0
我建议尝试这个并缩放你的图像使用矩阵类。
Bitmap bmp = BitmapFactory.decodeResource(myContext.getResources(),drawableId);
int w = bmp.getWidth();
int h = bmp.getHeight();
Matrix bMatrix = new Matrix();
bMatrix.postScale(scaleWidth, scaleHeight);
Bitmap resizedBitmap = Bitmap.createBitmap(bmp, 0, 0, w, h , bMatrix, true);
于 2012-09-27T04:54:40.180 回答
0
看看这个输入事件可能对你有帮助..
于 2012-09-27T05:01:04.880 回答