]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/url_app_bar.xml
Improve the layout of SSL certificates in Domain Settings. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / url_app_bar.xml
index 66cf287af5c16ad5e004e53fdad95f4fd4db6a58..ef93af167fcad6ad8931b50e8208329436533c82 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>.
 
@@ -27,8 +27,7 @@
     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"
@@ -39,8 +38,8 @@
         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`.
+     `android:autofillHints` only applies to API >= 26.  `tools:ignore="UnusedAttribute"` removes the lint warning. -->
     <EditText
         android:id="@+id/url_edittext"
         android:layout_height="wrap_content"
@@ -48,5 +47,8 @@
         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"
+        android:autofillHints=""
+        tools:ignore="UnusedAttribute" />
 </RelativeLayout>
\ No newline at end of file