In my case I have RelativeLayout
which contains many EditText
boxes and lines between them.
What I need now is to get Zoom work on this. I have googled a lot(in days) and I haven't found the answer how to do this.
Firstly it would be easiest to all of us if I start with few questions, so:
- Is that true 'Pinch zoom' is only supported on
ImageView, MapView and WebView
? - Is it even possible to get any kinda zoom work on RelativeLayout? (I know one and imo last choice is to use buttons and multiple all size values and/or refactor whole "view" every time button is touched)
- If it is possible to make work in anyway easier than above I would love to hear how it should be done.
Edit: And I tried to use Animation and there was some kind of scale which worked pretty well, but the only and fatal problem was that EditTextBoxe's Touching bounds didn't scale.. Or even move, so they were on original position and size. Is there any suggestions to this one?