Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have defined a text view in my xml layout. But as sometimes it contains a lot of text so i want to add zoom so that when the user taps, it zooms my text. Can anyone please tell me how to do that?

share|improve this question
1  
you can use webview for hat right ? – itsrajesh4uguys Feb 1 at 13:12
what additional features does webview provide over textview? – user1977768 Feb 1 at 13:14
don't use webview for this, a webview primary objective is to show html content. – user1281750 Feb 1 at 13:17
webview provide default zoom controls . – itsrajesh4uguys Feb 1 at 13:37

1 Answer

up vote 1 down vote accepted

Zoom might not be the right word for your problem, you actually want to increase textsize and maybe add some animation to it so it looks like a zooming effect.

  • make a customView extending from TextView
  • implement touch/onclick on this customView
  • onCallback of these events increase fontsize

EXTRA: you could add animations to animate "the zoom"

share|improve this answer
but i want to increse the tex-size on touch like it appears to be zoom – user1977768 Feb 1 at 13:06
yes you can do that, i will change the word decrease to increase, same story – user1281750 Feb 1 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.