Olá Thiago, primeiramente obrigado por se interessar em tentar resolver meu problema.
Bem eu tentei usar uma lib chamada PhotoView:
https://github.com/chrisbanes/PhotoView
(essa lib)
Originalmente um método é assim:
Originalmente um método é assim:
public void usingSimpleImage(ImageView imageView)
{
ImageAttacher mAttacher = new ImageAttacher(imageView);
ImageAttacher.MAX_ZOOM = 2.5f; // Double the current Size
ImageAttacher.MIN_ZOOM = 1.0f; // Half the current Size
MatrixChangeListener mMaListener = new MatrixChangeListener();
mAttacher.setOnMatrixChangeListener(mMaListener);
PhotoTapListener mPhotoTap = new PhotoTapListener();
mAttacher.setOnPhotoTapListener(mPhotoTap);
}
Porém tentei adaptar para isso:
public void usingSimpleImage(ImageView imageView, ImageView imageView2)
{
ImageAttacher mAttacher = new ImageAttacher(imageView);
ImageAttacher mAttacher2 = new ImageAttacher(imageView2);
ImageAttacher.MAX_ZOOM = 2.5f; // Double the current Size
ImageAttacher.MIN_ZOOM = 1.0f; // Half the current Size
MatrixChangeListener mMaListener = new MatrixChangeListener();
mAttacher.setOnMatrixChangeListener(mMaListener);
mAttacher2.setOnMatrixChangeListener(mMaListener);
PhotoTapListener mPhotoTap = new PhotoTapListener();
mAttacher.setOnPhotoTapListener(mPhotoTap);
mAttacher2.setOnPhotoTapListener(mPhotoTap);
}
Porém não deu certo, vc tem alguma idéia para eu tentar resolver esse problema?
Porém não deu certo, vc tem alguma idéia para eu tentar resolver esse problema?
Em quinta-feira, 3 de março de 2016 20:15:35 UTC-3, thiagolr escreveu:
-- O que você já tentou fazer? Qual problema você encontrou?On Thu, Mar 3, 2016 at 5:47 PM, Matheus Ariel <matheu...@gmail.com> wrote:Meu projeto android possui 2 imageViews, uma para abrir uma imagem e outra para desenhar retângulos sobre a imagem, o problema está que eu tenho que dar zoom nas duas imageViews ao mesmo tempo, alguém podeira me ajudar? Ou me dar dicas de como eu posso resolver esse problema.--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-...@googlegroups.com .
For more options, visit https://groups.google.com/d/optout .
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
0 comentários:
Postar um comentário