这是Galaxy Note上的我的网页浏览(没有内容):http://i.stack.imgur.com/YebnZ.png
我找不到如何使用所有空格。
我尝试使用分辨率名称(hdpi,...)创建布局文件夹,但它不起作用:(
以下是我的布局代码:
<?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>
有人可以帮我占用屏幕上的所有空间吗?
答案 0 :(得分:0)
尝试在清单中添加适当的<supports-screens>
元素,以表明您支持大屏幕设备:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"/>