我想在我的android應用程序中實現放大鏡。在觸摸位應該放大到一定比例並呈aside.I'm沒有得到在那裏我談到bitmap.Can任何確切的位圖區域給我一個solution.This是我的代碼如何在android中放大位圖的觸點?
Bitmap bitmap = new BitmapShader(modelBitmap, TileMode.CLAMP, TileMode.CLAMP);
Paint paint = new Paint();
matrix1.postScale(2f, 2f, mouseDownX, mouseDownY);
bitmap.setLocalMatrix(matrix1);
paint.setShader(bitmap);
canvas.drawCircle(60,230, (int) (width * 0.10), paint);
這裏mouseDownX和mouseDownY是觸摸座標。我沒有得到我觸摸的位圖的確切區域。
請張貼你已經嘗試過的代碼,並解釋不工作。如果您希望開發人員爲您編寫此代碼,則可能會花費您的資金,這可能不適合您。 – 2015-03-03 09:22:46
告訴我我做錯了什麼? – user3305353 2015-03-03 09:43:21