gpt4 book ai didi

android - AlertDialog 是否支持 WebView?

转载 作者:太空宇宙 更新时间:2023-11-03 12:13:05 25 4
gpt4 key购买 nike

我正在尝试实现一个带有 Webview 的 AlertDialog。

public OnClickListener imageButtonViewOnClickListener = new OnClickListener() {
public void onClick(View v) {

LayoutInflater inflater = LayoutInflater.from(MyActivity.this);

// error here
View alertDialogView = inflater.inflate(R.layout.alert_dialog_layout, null);

WebView myWebView = (WebView) findViewById(R.id.DialogWebView);
myWebView.loadData(webContent, "text/html", "utf-8");
AlertDialog.Builder builder = new AlertDialog.Builder(MyActivity.this);
builder.setView(alertDialogView);

builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
}).show();
}

};

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="vertical">
<webView android:id="@+id/DialogWebView" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_marginLeft="20dip"
android:layout_marginRight="20dip" android:textAppearance="?android:attr/textAppearanceMedium" />

但是,我在“View alertDialogView = inflater.inflate(R.layout.dialog_layout, null);”处遇到错误说“android.view.InflateException:二进制 XML 文件第 6 行:错误膨胀类 webView“和”11-26 17:15:47.934: ERROR/AndroidRuntime(4699): Caused by: java.lang.ClassNotFoundException: android.view.webView in loader dalvik.system.PathClassLoader@43457e60"

有谁知道发生了什么事吗? AlertDialog 是否支持 WebView?感谢您提前提出任何建议。

干杯,克里斯

最佳答案

你需要写WebView,而不是webView。大写 W

关于android - AlertDialog 是否支持 WebView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4283038/

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