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.

In my app, I am showing some html text in a webview. I want to restrict the size of the content shown in the webview only to certain lines. Something similar to setMaxLines() method available for TextView. Is there anyway I can achieve this. Thanks.


What I found out is that if you want to show html text, you can do it in a textview using

TextView tvDesTxt;
tvDesTxt.setText(Html.fromHtml("your text");

You can then set the no. of lines in the textview.

tvDesTxt.setMaxLines(7);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.