]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/find_on_page_app_bar.xml
Migrate to AndroidX from the Android Support Library. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / find_on_page_app_bar.xml
index 247bb691182269efaa06411730998ce26060b5f8..8b2a510ebaa56d472c628f0501a1e8594074dff6 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2016-2017 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2016-2017,2019 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
@@ -21,6 +21,7 @@
 <!-- `LinearLayout` is initially `visibility="gone"` so the `url_app_bar` is visible. -->
 <LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/find_on_page_linearlayout"
     android:layout_height="wrap_content"
     android:layout_width="match_parent"
@@ -38,7 +39,8 @@
         android:hint="@string/find_on_page"
         android:lines="1"
         android:imeOptions="actionDone"
-        android:inputType="text" />
+        android:inputType="text"
+        tools:ignore="Autofill" />
 
     <TextView
         android:id="@+id/find_on_page_count_textview"
@@ -46,8 +48,7 @@
         android:layout_width="wrap_content"
         android:layout_marginStart="4dp"
         android:layout_marginEnd="4dp"
-        android:text="@string/zero_of_zero"
-        />
+        android:text="@string/zero_of_zero" />
 
     <ImageView
         android:id="@+id/find_previous"