I'm creating an ImageView programmatically in my activity. And I want to add two images side by side from internal storage into the ImageView. How can I do it?
Asked
Active
Viewed 148 times
1
-
Why didn't you make two ImageView? Maybe it's more easy, and you will haven't to use image manipulation. – Lompa Oct 02 '13 at 08:46
-
I can't because I want to add multiple touch zoom fature to ImageView. When I do it, images has separate zoom features. – Erdinç Özdemir Oct 02 '13 at 08:50
-
You could put both `ImageView` in a layout and zoom the layout? – user802421 Oct 02 '13 at 08:58
-
@user802421 how can I zoom the Layout? Can you give me an example? – Erdinç Özdemir Oct 02 '13 at 09:00
-
I have been using this approach for scaling/zooming multiple components. http://stackoverflow.com/a/13369768/802421 – user802421 Oct 02 '13 at 09:09