| 12345678910111213141516171819202122232425262728 |
- package com.datarecovery.master.widget;
- import android.content.Context;
- import android.util.AttributeSet;
- import android.view.MotionEvent;
- import android.webkit.WebView;
- import androidx.annotation.NonNull;
- import androidx.annotation.Nullable;
- public class UntouchableWebView extends WebView {
- public UntouchableWebView(@NonNull Context context) {
- super(context);
- }
- public UntouchableWebView(@NonNull Context context, @Nullable AttributeSet attrs) {
- super(context, attrs);
- }
- public UntouchableWebView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
- super(context, attrs, defStyleAttr);
- }
- @Override
- public boolean onTouchEvent(MotionEvent event) {
- return false;
- }
- }
|