Here is my webview (without content) on Galaxy Note: https://i.stack.imgur.com/YebnZ.png
I can’t find how I can use all spaces.
I tried to create layout folders with resolution name (hdpi, …) but it’s not working 🙁
Here is the code of my layout :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/webview_main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
android:scrollbars="none" />
</LinearLayout>
Can someone help me to take all space on the screen?
Try adding an appropriate
<supports-screens>element to your manifest to indicate that you support large-screen devices: