vote up 0 vote down star

Hello....

I want to determine the width and the height of the webview .i have already tried using

webView.getWidth(); webView.getHeight();

but the log always show them 0. any help will be appreciated..

thanks....

flag
Can you post your code? Remember you cannot get the width and height of a view in the OnCreate method because the layout hasn't occurred yet. – Whaledawg Oct 23 at 14:17

1 Answer

vote up 0 vote down

Hmmm - I looked through the WevView source and I can see that internally they are using View#getWidth and View#getHeight here's one of the WebView's private methods:

/*
 * Return the width of the view where the content of WebView should render
 * to.
 */
private int getViewWidth() {
    if (!isVerticalScrollBarEnabled() || mOverlayVerticalScrollbar) {
        return getWidth();
    } else {
        return getWidth() - getVerticalScrollbarWidth();
    }
}

As noted in the comments you have to make sure you are measuring it after you assign the activity layout e.g. setContentView(R.layout.mylayout);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.