将图像从一个ImageView复制到另一个

时间:2013-07-18 18:33:54

标签: android imageview

我有一个ImageView(A),其图像使用Matrix转换重新调整大小(放大)。如何将另一个图像指定给另一个ImageView(B)保持ImageView A的大小和位置?

1 个答案:

答案 0 :(得分:0)

尝试:

B.setDrawable(A.getDrawable());
B.setImageMatrix(A.getImageMatrix());