我开发了一个HTML5 Android应用程序,Iam坚持使用Android应用程序的基本xml布局。当我在模拟器和Android智能手机上运行我的应用程序时,我在右侧有意外的空白区域。
http://i.stack.imgur.com/c3emH.png
这是代码表单activity_main.xml文件
<?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/web_engine"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>