I am using multiple Web Views and adding it in a layout, my structure is like this
Linear Layout
|
|----------------|
Webview
|----------------|
Webview
|----------------|
Webview
|----------------|
I want to set minimum height for weview, so that all cells will looks similar.
I have tried with
setMinimumHeight(int minHeight)
But its not working. I have also checked with
cellLayout.addView(mWebview, new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, 80));
It works perfectly fine but it restricts with values 80.
If HTML content is more then size then it will show a scroll.
So I am looking for minimum height, so if content is more then minmum height, it will automatically warp the content.
How to set minimum height for WebView ?