I have a RelativeLayout with TextView, ImageView, EditText, RadioGroup.
How do I simply enable pinch zoom in/out for the complete screen?
Is there no ways to enable an option in the androidmanifest? Do I have to code everything? Can I consider my screen as a bitmap?
Also I have several activities: do I need to duplicate the code in each activity?
Thanks!
Unfortunately there's no an easy way to do a pinch to zoom.
Yes you'll need to code "everything".
But, why do you need this functionalitie in this particular case ? Pinch to zoom is use when you have a big image, or any surface where your user will need to move on.
What you describe looks like a form, why your user could use a zoom ?
Yan