]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/url_app_bar.xml
Add import and export of settings. https://redmine.stoutner.com/issues/23
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / url_app_bar.xml
index 377deff4340b5f025704cf8c204d5900db0d4564..a7397c3508f09192a107cbca5127f121b659108f 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2015-2017 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2015-2018 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
     android:layout_width="match_parent"
     tools:context=".activities.MainWebViewActivity" >
 
-    <!-- Set `@drawable/world` as the initial `favoriteIcon`.
-        `layout_height` and `layout_width` of 26dp matches the `AppBar` icons. -->
+    <!-- Set `@drawable/world` as the initial as the initial favorite icon.  `layout_height` and `layout_width` of 26dp matches the `AppBar` icons. -->
     <ImageView
         android:id="@+id/favorite_icon"
         android:src="@drawable/world"
         android:layout_height="26dp"
         android:layout_width="26dp"
         android:layout_centerVertical="true"
+        android:layout_marginStart="4dp"
         android:onClick="viewSslCertificate"
         android:contentDescription="@string/favorite_icon" />
 
-    <!-- `android:imeOptions="actionGo"` sets the keyboard to have a `go` key instead of a `new line` key.
-        `android:inputType="textUri"` disables spell check in the `EditText`. -->
+    <!-- `android:imeOptions="actionGo"` sets the keyboard to have a go key instead of a new line key.  `android:inputType="textUri"` disables spell check in the `EditText`. -->
     <EditText
         android:id="@+id/url_edittext"
         android:layout_height="wrap_content"
@@ -47,5 +46,6 @@
         android:layout_toEndOf="@id/favorite_icon"
         android:hint="@string/url_or_search_terms"
         android:imeOptions="actionGo"
-        android:inputType="textUri" />
+        android:inputType="textUri"
+        android:selectAllOnFocus="true" />
 </RelativeLayout>
\ No newline at end of file