Как отключить взаимодействия с webView

Рейтинг: 0Ответов: 1Опубликовано: 20.03.2023

Нужно чтобы прям ничего не работало не свайпы не нажатия (полное безразличие к любым взаимодействиям )

webView.setEnabled(false);
 webView.setFocusable(false);
  не работают

.

  <?xml version="1.0" encoding="utf-8"?>
        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical">
        
        
            <WebView
                android:id="@+id/webView"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        
        </LinearLayout>

Ответы

▲ 0

Вот так меня устроило спасиб

   <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
    
    
        <WebView
            android:id="@+id/webView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
        </WebView>
    
    
        <View
            android:id="@+id/view"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:onClick="x" />
        
    </FrameLayout >

.

public void x (View view){}