Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
On Android, I have .png images added as a resource in my /res/ folder.
Question: I want to display an image from the resource filling a screen, but allowing the user to pinch-to-zoom it. What UI component do I use? An ImageView? A WebView?
http://www.zdnet.com/blog/burnette/how-to-use-multi-touch-in-android-2-part-6-implementing-the-pinch-zoom-gesture/1847
How can I get zoom functionality for images?
Put your image in the assets folder, and point the WebView to it. The WebView will do everything for you, in terms of pinch to zoom functionality.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I need a tool where the user can draw an flowchart easily, and export this to a HTML and CSS file.
My intention to save this HTML code in a database, and get this from my android app, and show this in a Webview.
Do you know some flowchart tool for to do that?
Thank you!
Have a look into Lucid Chart API, I know there is an embed code option, which could help you, but there's always a save the charts to an image file.
There might be a specific tool out there to do that function, but I am guessing it would be difficult to find or require an upfront cost to use. I would anticipate that you most likely will have to strap something together yourself.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
How to create a custom keyboard with Gif images in Android? I need to create a custom keyboard which contains Gif images ,I need to develop a keyboard like the below image ,Any Tutorial or sample source please?
I need to develop a keyboard like this
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need suggestion for Android library for graphics, for transformation images , anchor points, rotate , warp , scale etc. Project is something like photoshop also has 2 - 3 simple animation . So I need from someone to recommend to me a library which suit for me :). Thank You
I think you will need more of a lib, so here goes some!
Cropper
https://github.com/edmodo/cropper
https://github.com/jdamcd/android-crop
GPUImage for Android
https://github.com/CyberAgent/android-gpuimage
PhotoProcessing
https://github.com/lightbox/PhotoProcessing
See more here, You can filter by img
http://android-arsenal.com/tag/47
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Although it isn't obvious at first, in the Android Instagram app you can (after editing a photo) go back to the photo roll to view an old image. Then a frame appears with drag handles on the side; you can move the frame and resize it by dragging the handles, allowing you to crop to any part of the image.
How do I do this on Android? Is this a standard feature, is there a similar open source library?
take look at this project.
https://github.com/naver/android-imagecropview
This project is for imagecropview like instagram
Is this along the lines of what you want?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there something in the standard Android SDK that allows you to do image sliding like this app?
No there isn't. You'll have to implement that by hand however if you find a 3rd party library that does just that, even tho I doubt there is, then please feel free to add it to my list.
https://stackoverflow.com/q/4078479/418183
Try overloading GalleryView or ViewFlipper classes.
I needed switchable banner and I overloaded the ViewFlipper, then I am detecting gestures on that view and im switching the images.
It works really fine.
Try this library:
https://github.com/daimajia/AndroidImageSlider
You can easily load images from an internet URL, drawable, or file.