,因爲它工作正常,只是改變這種
myWebView.setBackgroundColor(0);
這個
myWebView.setBackgroundColor(Color.BLUE);
。
看到我的全部代碼..
XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.softeng.abcd.Main2Activity"
tools:showIn="@layout/activity_main2"
>
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webview"></WebView>
</RelativeLayout>
Java代碼。
WebView webview = (WebView)findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setLoadWithOverviewMode(true);
webview.getSettings().setUseWideViewPort(true);
webview.getSettings();
webview.setBackgroundColor(Color.BLUE);
輸出:
我試過黑色,白色和透明。現在我正在嘗試透明。 –
請參閱下面的答案。 – Ironman
不適用於我:-( –