gpt4 book ai didi

android - WebView 在加载进度条时显示为白色

转载 作者:行者123 更新时间:2023-11-29 21:44:11 37 4
gpt4 key购买 nike

我有一个 ProgressBar,它在加载 WebView 时显示。我希望 ProgressBar 显示为小尺寸,而背景为黑色。然后我可以在加载 WebView 时关闭进度条。

我遇到的问题是 WebView 在加载时是白色的。有什么办法让它变黑吗?如果我将 WebView 的背景颜色设置为黑色,有那么一瞬间,它仍然是白色,并且加载非常难看。

Activity的布局是:

<?xml version="1.0" encoding="utf-8"?>
<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" >

<WebView
android:id="@+id/WebView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<ProgressBar
android:id="@+id/ProgressBar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone" />

</RelativeLayout>

或者,我应该使用某种类似于 Android 进度条的图像吗?

最佳答案

将以下内容添加到您的 XML 中:

<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff000000" />

并在代码中执行此操作:

public View onCreateView(LayoutInflater inflater, ViewGroup container, 
Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.feed_fragment, container, false);

WebView webView = (WebView) view.findViewById(
R.id.webview);
webView.setBackgroundColor(0);

return view;
}

关于android - WebView 在加载进度条时显示为白色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16334827/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com