大家好!
我正在尝试实现放大镜。它应该使它下面的内容看起来更大。
几个小时后,我只有一个解决方案。
在我的 xml 文件中,声明如下内容(伪代码):
<ZoomView>
some other content views
<View
android:id="@+id/magnifier
/>
</ZoomView>
在这段代码中,ZoomView 是一个自定义视图扩展了 RelativeLayout。View with magnifier id 是一个实际的放大镜,可以放大内容。
这是它的样子:
那么代码中会发生什么。
在 ZoomView 的 onDraw 方法中,我做这些事情。
@Override
protected void onDraw(android.graphics.Canvas canvas)
{
Bitmap bitmap = Bitmap.createBitmap(canvas.getWidth(), canvas.getHeight(), Bitmap.Config.ARGB_8888);
Canvas bitmapCanvas = new Canvas(bitmap);
super.onDraw(bitmapCanvas);
// some code that detects magnifier view position and size,
// than gets 1 area image, scale it to make in 2x bigger.
// And then replace 2 area with this scaled image.
// draw result on canvas
canvas.drawBitmap(bitmap, new Matrix(), null);
}
这段代码运行良好,但速度太慢。谁能给我其他解决方案,或者我该如何优化这个解决方案?
抱歉,如果有问题,这是我的第一个问题。