]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Refine progressBar height. Create onReceivedError toast.
authorSoren Stoutner <soren@stoutner.com>
Wed, 2 Dec 2015 18:22:20 +0000 (11:22 -0700)
committerSoren Stoutner <soren@stoutner.com>
Wed, 2 Dec 2015 18:22:20 +0000 (11:22 -0700)
app/src/main/AndroidManifest.xml
app/src/main/java/com/stoutner/privacybrowser/Webview.java
app/src/main/res/layout/app_bar.xml

index 02deefaca231af5a89399aba8921b25447181bb5..1f558d1da41399a1ca148cc4ae8264fb38d96bad 100644 (file)
@@ -3,6 +3,9 @@
     package="com.stoutner.privacybrowser" >
 
     <uses-permission android:name="android.permission.INTERNET" />
+    <!-- READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE are required to download files. -->
+    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 
     <application
         android:allowBackup="false"
index 50d67ac5a6162e0b671393961d3630c5549ddb85..0de84bfb20a85a94c3b09a7442e3cbf3a607de91 100644 (file)
@@ -20,11 +20,15 @@ import android.view.MenuItem;
 import android.view.View;
 import android.view.inputmethod.InputMethodManager;
 import android.webkit.WebChromeClient;
+import android.webkit.WebResourceError;
+import android.webkit.WebResourceRequest;
 import android.webkit.WebView;
 import android.webkit.WebViewClient;
 import android.widget.EditText;
 import android.widget.ImageView;
 import android.widget.ProgressBar;
+import android.widget.Toast;
+
 import java.io.UnsupportedEncodingException;
 import java.net.MalformedURLException;
 import java.net.URL;
@@ -44,6 +48,7 @@ public class Webview extends AppCompatActivity {
         setContentView(R.layout.activity_webview);
 
         final WebView mainWebView = (WebView) findViewById(R.id.mainWebView);
+        final Activity mainWebViewActivity = this;
 
         final ActionBar actionBar = getSupportActionBar();
         if (actionBar != null) {
@@ -77,14 +82,17 @@ public class Webview extends AppCompatActivity {
         }
 
         mainWebView.setWebViewClient(new WebViewClient() {
-            // setWebViewClient makes this WebView the default handler for URLs inside the app, so that links are not kicked out to other apps.
-            // Save the URL to formattedUrlString and update urlTextBox before loading mainWebView.
+            // shouldOverrideUrlLoading makes this WebView the default handler for URLs inside the app, so that links are not kicked out to other apps.
             @Override
             public boolean shouldOverrideUrlLoading(WebView view, String url) {
                 mainWebView.loadUrl(url);
                 return true;
             }
 
+            public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) {
+                Toast.makeText(mainWebViewActivity, "Error loading " + request + "   Error: " + error, Toast.LENGTH_SHORT).show();
+            }
+
             // Update the URL in urlTextBox when the page starts to load.
             @Override
             public void onPageStarted(WebView view, String url, Bitmap favicon) {
@@ -136,7 +144,7 @@ public class Webview extends AppCompatActivity {
         // Allow pinch to zoom.
         mainWebView.getSettings().setBuiltInZoomControls(true);
 
-        // Hide zoom controls API is 11 or greater.
+        // Hide zoom controls if the API is 11 or greater.
         if (Build.VERSION.SDK_INT >= 11) {
             mainWebView.getSettings().setDisplayZoomControls(false);
         }
@@ -172,7 +180,7 @@ public class Webview extends AppCompatActivity {
         return true;
     }
 
-    // @TargetApi(11) turns off the errors regarding copy and paste, which are removied from view in menu_webview.xml for lower version of Android.
+    // @TargetApi(11) turns off the errors regarding copy and paste, which are removed from view in menu_webview.xml for lower version of Android.
     @Override
     @TargetApi(11)
     public boolean onOptionsItemSelected(MenuItem menuItem) {
index d82f5ea694e761cb38826faa3f2760d5cb6e45e3..a66e99f4ccf44c37eb149794f07fceef0c719282 100644 (file)
@@ -5,7 +5,7 @@
     android:id="@+id/addressBarFrameLayout"
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
+    android:layout_height="wrap_content">
 
     <LinearLayout
         android:id="@+id/addressBarLinearLayout"
     </LinearLayout>
 
     <!-- android:max changes the maximum ProgressBar value from 10000 to 100 to match progress percentage. -->
+    <!-- android:layout_height="2dp" works best for API 23 "Marshmallow", but "3dp" is required for visibility on API <= 22. -->
     <ProgressBar
         android:id="@+id/progressBar"
         style="?android:attr/progressBarStyleHorizontal"
         android:layout_width="fill_parent"
-        android:layout_height="7dp"
+        android:layout_height="3dp"
         android:layout_gravity="bottom"
         android:max="100"
         android:progressTint="#FF0097FF"