WebView setBackgroundColor在Android中不起作用

时间:2016-07-16 08:57:31

标签: android android-layout webview background-color setbackground

我已经尝试了所有我已经找到的建议,但没有人适合我。 此代码不会影响Android中webview的背景颜色:

myWebView = (WebView) findViewById(R.id.webview1);

myWebView.setWebChromeClient(new WebChromeClient());
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.getSettings().setLoadWithOverviewMode(true);
myWebView.getSettings().setUseWideViewPort(true);
myWebView.getSettings();
myWebView.setBackgroundColor(0);

我如何才能使这项工作变得简单起作用?

1 个答案:

答案 0 :(得分:1)

只需更改此

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);

输出:

enter image description here