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....
|
|
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.... |
||
|
|
|
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
As noted in the comments you have to make sure you are measuring it after you assign the activity layout e.g. |
||
|
|