Android全屏Webapp后端应用程序

时间:2011-12-25 22:14:51

标签: android web-applications fullscreen

我根据http://developer.android.com/resources/tutorials/views/hello-webview.html

创建了一个基于WebView的应用程序

虽然我完成了所写的内容,包括p.5,但应用程序并非全屏。

  

当你在清单中时,为网页提供更多空间   删除标题栏,使用“NoTitleBar”主题:

<activity android:name=".HelloGoogleMaps"
android:label="@string/app_name"
     android:theme="@android:style/Theme.NoTitleBar">

清单的完整代码在这里:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mydomain.helloworld"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.INTERNET" />

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".HelloWorldActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.NoTitleBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

main.xml文件位于:

<?xml version="1.0" encoding="utf-8"?>
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

我在模拟器(2.2)和真实设备(2.3)中测试了应用程序,项目平台是2.2。

结果显示在这里(真实设备看起来很相似):

enter image description here

我的应用程序有什么问题,为什么标题栏出现以及什么是正确的栏?

此致

更新

这个问题部分重复了这个问题(右边的栏): webview showing white bar on right side

1 个答案:

答案 0 :(得分:1)

这可以帮助你在onCreate() - 方法:

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);