我希望我的 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);