WebView に Web ページを表示させたいが、ページとのやり取りはまったく行わないようにしたい。見せるだけ。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);