2022-10-02 23:06:56 +02:00
|
|
|
package android.webkit;
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2023-06-18 11:03:43 +02:00
|
|
|
import android.view.View;
|
2022-10-02 23:06:56 +02:00
|
|
|
|
|
|
|
|
// the only reason we need to implement this is that some app developers are such scumbags that they try to use this for tracking purposes
|
2023-06-18 11:03:43 +02:00
|
|
|
public class WebView extends View {
|
2022-10-02 23:06:56 +02:00
|
|
|
public WebView (Context context) {
|
2023-06-18 11:03:43 +02:00
|
|
|
super(context);
|
2022-10-02 23:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WebSettings getSettings() {
|
|
|
|
|
return new WebSettings();
|
|
|
|
|
}
|
2023-06-18 11:03:43 +02:00
|
|
|
|
|
|
|
|
public void setDownloadListener(DownloadListener downloadListener) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setScrollBarStyle(int scrollBarStyle) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWebViewClient(WebViewClient webViewClient) {
|
|
|
|
|
}
|
2022-10-02 23:06:56 +02:00
|
|
|
}
|