Android Image Zoom和Pan in jelly bean

时间:2014-04-21 19:27:10

标签: android android-image android-4.2-jelly-bean

我已经实现了图像缩放和平移跟踪网络中的样本和文章,并且缩放和平移在KitKat上工作正常,但在Jelly bean上,缩放和平移都不会使其冻结图像。

currentMatrix.postScale(temp, temp, 0, 0);
setImageMatrix(this.currentMatrix);

果冻豆的图像有什么可以做的吗?

1 个答案:

答案 0 :(得分:1)

在果冻豆中,一旦我为它设置了新的矩阵,我必须使我的图像视图无效。

ImageView.postInvalidate();

在kitkat中无需无效。