I have a RelativeLayout
with WebView
. I am loading some generated html text into that WebView
. After loading the data WebView
height exceeding the screen. Now I need the height of the entire WebView
. Till now I tried WebView#getHeight()
, WebView#getBottom()
but I'm getting the height of visible content.

- 1,460
- 2
- 14
- 28
-
1you have to use javascript for that. – njzk2 Apr 13 '17 at 14:10
-
1Can you tell me how ? – shobhan Apr 14 '17 at 05:06
7 Answers
Finally I got the answer for my question. Here is the answer.
After loading WebView
we will get call in WebViewClient#onPageFinished
there we need to call javascript to get the height of full content of WebView
WebViewClient
class
/**
* Custom web client to perform operations on WebView
*/
class WebClient extends WebViewClient {
@Override
public void onPageFinished(WebView view, String url) {
view.loadUrl("javascript:AndroidFunction.resize(document.body.scrollHeight)");
}
}
}
After that we will get callback with height in WebInterface
class which is Registered as JavascriptInterface
/**
* WebView interface to communicate with Javascript
*/
public class WebAppInterface {
@JavascriptInterface
public void resize(final float height) {
float webViewHeight = (height * getResources().getDisplayMetrics().density);
//webViewHeight is the actual height of the WebView in pixels as per device screen density
}
}

- 1,460
- 2
- 14
- 28
-
resizing is crucial if actual height in screen pixels is needed. thanks a lot. – Boris Gafurov Jul 06 '17 at 04:14
-
-
No it's webView instance. Edited answer. Thanks man. I forgot that it's my answer. ;) – shobhan Sep 10 '18 at 13:10
-
-
go through this link https://developer.android.com/guide/webapps/webview#BindingJavaScript – shobhan Mar 11 '19 at 18:53
-
1Since `WebViewClient.onPageFinished()` only gets called when the page had finished loading, this solution falls short when the size of the content changes post loading (e.g. Javascript content rendered after page finished loading, user interactions with expandable and collapsible sections) – trod Dec 02 '21 at 05:43
-
In this case we can have one more javascript call from web page when content is expanded/collapsed. – shobhan Dec 29 '21 at 16:50
-
Wrap your WebView
within a ScrollView
and webView.getHeight()
will return the height of the actual WebView content. Make sure your WebView
's height attribute is set to wrap_content
.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:layout_width="match_parent"
android:layout_height="wrap_content">
</WebView>
</ScrollView>

- 665
- 2
- 10
- 28
-
I tried this case also, but if we load 10 high quality images it is giving out off memory error. And one more thing keeping WebView in ScrollView is not recommended. – shobhan Apr 28 '17 at 05:39
-
@shobhan You're probably getting OOM because the images are much higher res than what the device can handle, consider if a high res image is 50mb, you load 10 = 250mb, and then on top of that you have the app, the os, etc. running on oftentimes devices with less than a gig of ram, you're going to kill your app quickly. – Trevor Hart Jul 20 '17 at 05:01
-
I think you tried to explain part of my above comment. (OOM out off memory error) :P Thanks. – shobhan Jul 20 '17 at 06:53
-
If you are using scroll view among with nested scroll view try to set android:nestedScrollingEnabled="true" inside scroll view – bene25 Jan 17 '23 at 09:37
-
NEVER wrap webViews inside scrollviews. It will make the WebView expand to max size and the webView will believe all of it's content is shown. WebView should handle content visibility, not ScrollView. – Torhan Bartel May 22 '23 at 08:21
public class CustomWebView extends WebView{
public CustomWebView(Context context) {
super(context);
}
int ContentHeight = 0;
public int getContentHeight(){
if(ContentHeight==0)
ContentHeight = computeVerticalScrollRange();
return ContentHeight;
}
}
Webview has protected method computeVerticalScrollRange()
. you can access this method by creating custom one.
((CustomWebView) webView).getContentHeight())

- 7
- 4

- 266
- 2
- 10
-
the word `compute` tends to indicate that some work is being done, possibly heavy. – njzk2 Apr 13 '17 at 14:25
-
-
kotlin: myWebView.contentHeight

- 579
- 4
- 9
-
In my case I aloso need multiply myWebView.contentHeigth to Resources.getSystem().displayMetrics.density to get real height. – user1795683 Aug 26 '22 at 05:05
My Answer:-
I think you have to remove padding properties from your layout.xml file
(i.e) Remove the following content from your XML file and try it.
android:paddingBottom
android:paddingLeft
android:paddingRight
android:paddingTop
Hope it helps!!

- 10,266
- 10
- 67
- 77

- 139
- 5
In your Java class add the getWindow()
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_webview);
}

- 885
- 11
- 29
private int getScale(){
Display display = ((WindowManager)
getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
Double val = new Double(width)/new Double(PIC_WIDTH);
val = val * 100d;
return val.intValue();
}
check this link! for more information

- 10,266
- 10
- 67
- 77

- 163
- 2
- 8