]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/activity_webview.xml
Add menu entry for home.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / activity_webview.xml
index deb2b7452ab05b5e6dc51a640d239df5f56d6e3a..d214b1b456b7bcdd07744058f4331ab4e66a3e4e 100644 (file)
@@ -11,6 +11,7 @@
         android:orientation="horizontal"
         android:id="@+id/topBarLayout">
 
+        // android:inputType="textUri" sets the keyboard to have a go arrow.
         <EditText
             android:id="@+id/urlTextBox"
             android:layout_width="0dp"
         <Button
             android:id="@+id/goButton"
             android:text="@string/go_button"
-            android:onClick="loadUrl"
+            android:onClick="loadUrlFromTextBox"
             style="?android:attr/buttonStyleSmall"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content" />
     </LinearLayout>
 
+    // FrameLayout lets the ProgressBar float on top of the WebView.
     <FrameLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
@@ -42,6 +44,7 @@
             android:focusable="true"
             android:focusableInTouchMode="true" />
 
+        // android:max changes the maximum ProgressBar value from 10000 to 100 to match progress percentage.
         <ProgressBar
             android:id="@+id/progressBar"
             style="?android:attr/progressBarStyleHorizontal"