0
我根據http://developer.android.com/resources/tutorials/views/hello-webview.html的Android全屏的webapp後端應用
雖然我做了什麼是書面的,包括第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。
結果這裏介紹(真實設備看起來類似):
這有什麼錯我的應用程序時,爲什麼標題欄出現的,什麼是正確的吧?
問候,
UPDATE
這個問題部分地複製這一個(右邊欄): webview showing white bar on right side
requestWindowFeature(Window.FEATURE_NO_TITLE); - 我已經評論過它,因爲它使應用程序崩潰。該應用程序現在全屏,謝謝。 – noober 2011-12-26 01:10:32
哦,對不起,我沒有測試這個片段,但如果它現在正常工作,我很滿意。 :) – TheWhiteLlama 2011-12-26 01:20:07
嗯...該應用程序是全屏幕,但左欄仍然存在。它會是什麼?我猜,WebView組件是黑色的,因爲HTML背景顏色設置爲0,並且在任何其他瀏覽器(Chrome,FF,Chromium,Safari,Mobile Safari)中都看不到該欄。我不知道如何調試。在VS之後,Eclipse和Android看起來並不陌生和陌生。 – noober 2011-12-26 01:26:41