我正在Android平台上制作浏览器应用程序。我在2.3版本的android上测试我的应用程序。我面临的问题是,我无法将应用程序屏幕全屏显示。我想要" WebView"全屏,但应该看到通知栏。此外,应隐藏标题栏。 我曾尝试过使用这些:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
但我仍然可以在我的应用中看到标题栏。
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
这隐藏了通知栏,但我不想这样做。我只是想隐藏标题栏。我也尝试在Manifest文件中使用主题,例如:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen
OR
android:theme="@android:style/Theme.Black.NoTitleBar
但有了这个,我的应用程序无法启动。它会突然停止。
此外,我的webview和URL地址栏显示在中心。他们在四面都留下了一些空间。像这样: How to make a full screen webview
如何删除它使其全屏显示。 请帮助。
答案 0 :(得分:1)
要禁用标题栏,请尝试在Manifest中添加它 -
android:theme="@android:style/Theme.NoTitleBar"
或试试这个:
在样式中添加它 -
<style name="Theme.Transparent" parent="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">"
<item name="android:windowBackground">#000000</item>
</style>
然后在Manifest中设置主题 -
android:theme="@style/Theme.Transparent"
据我所知,requestWindowFeature(Window.FEATURE_NO_TITLE);
应该可以正常工作。只需尝试在setContentView(...)
之前添加它,就像这样 -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(com.android.internal.R.layout.preference_list_content);
...
}
我不确定,但由于默认边距,您的WebView可能会留空。你的布局文件必须有点像这样 -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
//REMOVE THIS CODE
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
//TILL HERE
tools:context="com.example.web.MainActivity" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent" //MAKE THIS MATCH_PARENT
android:layout_height="match_parent" //MAKE THIS MATCH_PARENT
android:layout_alignParentBottom="true" />
...
</RelativeLayout>
删除此 -
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
另外,请确保您没有任何其他边距和填充,并确保WebView的高度和宽度为match_parent
...