Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus-android-webviewapp/src/org/adblockplus/libadblockplus/android/webviewapp/MainActivity.java

Issue 29361445: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: Created Nov. 1, 2016, 12:14 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2016 Eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package org.adblockplus.libadblockplus.android.webviewapp;
19
20 import org.adblockplus.libadblockplus.android.settings.Adblock;
21 import org.adblockplus.libadblockplus.android.webview.AdblockWebView;
22
23 import android.app.Activity;
24 import android.content.Intent;
25 import android.graphics.Bitmap;
26 import android.os.Bundle;
27 import android.view.View;
28 import android.view.inputmethod.InputMethodManager;
29 import android.webkit.WebChromeClient;
30 import android.webkit.WebView;
31 import android.webkit.WebViewClient;
32 import android.widget.Button;
33 import android.widget.EditText;
34 import android.widget.ProgressBar;
35
36 public class MainActivity extends Activity
37 {
38 private static final boolean DEVELOPMENT_BUILD = true;
39
40 // webView can create AdblockEngine instance itself if not passed with `webVie w.setAdblockEngine()`
41 private final boolean USE_EXTERNAL_ADBLOCKENGINE = true;
42
43 private ProgressBar progress;
44 private EditText url;
45 private Button ok;
46 private Button back;
47 private Button forward;
48 private Button settings;
49
50 private AdblockWebView webView;
51
52 @Override
53 protected void onCreate(Bundle savedInstanceState)
54 {
55 super.onCreate(savedInstanceState);
56 setContentView(R.layout.activity_main);
57
58 bindControls();
59 initControls();
60 }
61
62 private void bindControls()
63 {
64 url = (EditText) findViewById(R.id.main_url);
65 ok = (Button) findViewById(R.id.main_ok);
66 back = (Button) findViewById(R.id.main_back);
67 forward = (Button) findViewById(R.id.main_forward);
68 settings = (Button) findViewById(R.id.main_settings);
69 progress = (ProgressBar) findViewById(R.id.main_progress);
70 webView = (AdblockWebView) findViewById(R.id.main_webview);
71 }
72
73 private void setProgressVisible(boolean visible)
74 {
75 progress.setVisibility(visible ? View.VISIBLE : View.INVISIBLE);
76 }
77
78 private WebViewClient webViewClient = new WebViewClient()
79 {
80 @Override
81 public void onPageStarted(WebView view, String url, Bitmap favicon)
82 {
83 setProgressVisible(true);
84
85 // show updated URL (because of possible redirection)
86 MainActivity.this.url.setText(url);
87 }
88
89 @Override
90 public void onPageFinished(WebView view, String url)
91 {
92 setProgressVisible(false);
93 updateButtons();
94 }
95
96 @Override
97 public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
98 {
99 updateButtons();
100 }
101 };
102
103 private void updateButtons()
104 {
105 back.setEnabled(webView.canGoBack());
106 forward.setEnabled(webView.canGoForward());
107 }
108
109 private WebChromeClient webChromeClient = new WebChromeClient()
110 {
111 @Override
112 public void onProgressChanged(WebView view, int newProgress)
113 {
114 progress.setProgress(newProgress);
115 }
116 };
117
118 private void initControls()
119 {
120 ok.setOnClickListener(new View.OnClickListener()
121 {
122 @Override
123 public void onClick(View view)
124 {
125 loadUrl();
126 }
127 });
128
129 back.setOnClickListener(new View.OnClickListener()
130 {
131 @Override
132 public void onClick(View v)
133 {
134 loadPrev();
135 }
136 });
137
138 forward.setOnClickListener(new View.OnClickListener()
139 {
140 @Override
141 public void onClick(View v)
142 {
143 loadForward();
144 }
145 });
146
147 settings.setOnClickListener(new View.OnClickListener()
148 {
149 @Override
150 public void onClick(View v)
151 {
152 navigateSettings();
153 }
154 });
155
156 initAdblockWebView();
157
158 setProgressVisible(false);
159 updateButtons();
160
161 // to get debug/warning log output
162 webView.setDebugMode(DEVELOPMENT_BUILD);
163
164 // render as fast as we can
165 webView.setAllowDrawDelay(0);
166
167 // to show that external WebViewClient is still working
168 webView.setWebViewClient(webViewClient);
169
170 // to show that external WebChromeClient is still working
171 webView.setWebChromeClient(webChromeClient);
172 }
173
174 private void navigateSettings()
175 {
176 startActivity(new Intent(this, SettingsActivity.class));
177 }
178
179 private void initAdblockWebView()
180 {
181 if (USE_EXTERNAL_ADBLOCKENGINE)
182 {
183 // external adblockEngine
184 Adblock.get().retain();
185 webView.setAdblockEngine(Adblock.get().getEngine());
186 }
187 else
188 {
189 // AdblockWebView will create internal AdblockEngine instance
190 }
191 }
192
193 private void hideSoftwareKeyboard()
194 {
195 InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_S ERVICE);
196 imm.hideSoftInputFromWindow(url.getWindowToken(), 0);
197 }
198
199 private void loadPrev()
200 {
201 hideSoftwareKeyboard();
202 if (webView.canGoBack())
203 {
204 webView.goBack();
205 }
206 }
207
208 private void loadForward()
209 {
210 hideSoftwareKeyboard();
211 if (webView.canGoForward())
212 {
213 webView.goForward();
214 }
215 }
216
217 private String prepareUrl(String url)
218 {
219 if (!url.startsWith("http"))
220 url = "http://" + url;
221
222 // make sure url is valid URL
223 return url;
224 }
225
226 private void loadUrl()
227 {
228 hideSoftwareKeyboard();
229 webView.loadUrl(prepareUrl(url.getText().toString()));
230 }
231
232 @Override
233 protected void onDestroy()
234 {
235 webView.dispose(new Runnable()
236 {
237 @Override
238 public void run()
239 {
240 if (USE_EXTERNAL_ADBLOCKENGINE)
241 {
242 Adblock.get().release();
243 }
244 }
245 });
246
247 super.onDestroy();
248 }
249 }
OLDNEW

Powered by Google App Engine
This is Rietveld