gpt4 book ai didi

android - 无论如何要在android中完全禁用webview

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

我希望我的 webview 显示一个网页,但根本不与该页面进行任何交互。只是显示它。我正在显示一个 iframe,但是当您单击其中的图像时,它会转到一个链接。该链接对于框架来说太大了。我需要禁用点击它的功能。

我试过了

     WebView
android:id="@+id/wv_AmberAlert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:longClickable ="false"

    wv_Amber_Alert.setFocusableInTouchMode(false);
wv_Amber_Alert.setFocusable(false);
wv_Amber_Alert.setOnTouchListener(null);
wv_Amber_Alert.setOnClickListener(null);

最佳答案

您可以尝试将 WebViewClient 附加到 WebView 并覆盖 onLoadResource()停止加载 url 的方法:

WebViewClient client = new WebViewClient() {
@Override
public void onLoadResource(WebView view, String url) {
view.stopLoading();
}
};
wv_Amber_Alert.setWebViewClient(client);

关于android - 无论如何要在android中完全禁用webview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14738992/

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