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'm trying to override the onLayout of a WebView, to restrict size of large images to the screen size. In my overridden WebView, I tried:

@Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);
        Log.d("WEBVIEW-WIDTH",""+getWidth());
        post(new Runnable() {

            @Override
            public void run() {
                loadUrl("javascript:var imgs = document.getElementsByTagName('img');"+
                         "for (var i=0; i<imgs.length; i++) {imgs[i].style.maxwidth='"+getWidth()+"'};");
            }
        });

    }

When rotated, it logs the new width, but doesn't restrict the width of the image.

share|improve this question

1 Answer

up vote 0 down vote accepted

It wasn't working because I used maxwidth, not maxWidth.

Fortunately, it looks like there is a much better way to display it, which updates the image size when zooming and rotating:

 img { max-width: 100%; }

From http://davidwalsh.name/image-max-width

share|improve this answer

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.