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 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 ?

share|improve this question

1 Answer

you can try it out with using below code. you can put the following in the onPageFinished event for the WebView and it does the job for me of fixing the dialog height after the html content has been loaded.

public void onPageFinished(WebView view, String url) {
    ....
    webView.setOnTouchListener(new View.OnTouchListener() {
      @Override
      public boolean onTouch(View v, MotionEvent event) {
        if (webView.getHeight() < currentHeight) {
          currentHeight = webView.getHeight();
        }
        final LayoutParams params = webView.getLayoutParams();
        params.height = currentHeight;
        webView.setLayoutParams(params);
        return false;
      }
    });
}
share|improve this answer
buddy it will not work because he is asking for setting the minimum height and this will just wrap the content without scrollview – Goofy Jan 10 at 6:00

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.