我正在尝试Android工作室中的东西。它很顺利,但只有一件事我被困住了。如何使WebView活动使用全屏大小? http://i.stack.imgur.com/oYJoP.png
答案 0 :(得分:0)
requestWindowFeature(Window.FEATURE_NO_TITLE);
在setContentView之前
setContentView(R.layout.yourlayout);
在Activity oncreate方法
答案 1 :(得分:0)
使用以下代码。这对我有用
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
如果您在WebView
等其他布局中使用LinearLayout
,请不要为该布局添加填充...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</LinearLayout>
如果您也要隐藏ActionBar
,请转到您的清单文件,并在活动代码中使用android:theme="@style/Theme.AppCompat.Light.NoActionBar"
<activity
android:name=".YourActivityName"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>