I am trying to make a webview to open on the bottom of the application to display little information but it keeps taking the whole screen and covering other widgets with information. Is there a way to make it have a certain size and place on the application?
A:
Oh, you should provide some of your layout xml so we can see what your are wrapping the webview inside. Is your webview the root element of your app layout - than it will always use the full screen. But try wrap it inside a framelayout or something else...
<FrameLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="bottom">
<WebView
android:layout_height="100dp"
android:layout_width="fill_parent"/>
</FrameLayout>
PHP_Jedi
2010-04-09 22:36:56