Possible Duplicate:
Android Webview – Webpage should fit the device screen
I want to render a webpage in android’s webview. Currently, I can display a webpage but how to make it fit within the screen?
I referred to:
Android Webview – Webpage should fit the device screen
but didn’t find a solution there.
Thanks!!
Your question is not very clear but if I’m guessing you mean the
webviewis not expanding to fit the whole screen? Please post your code to support your question.To make the
webviewexpand to the whole screen, add thewebviewin your activity layout xml and make sure you set thelayout_widthandlayout_heightto fill_parent. Here’s a simple example:Ryan