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);