diff options
author | Matthew Wong <wongma@protonmail.ch> | 2015-08-03 08:31:23 -0400 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-08-14 17:36:47 -0400 |
commit | 51a05087e5a349afa3f4e0febdc3a339179e9bbd (patch) | |
tree | b485de2203fb3d11af285b18d7c894c672bc6bb9 /app/src/main/res | |
parent | 2d7c37d379ae48fa3ff464032ad4cb1759b1dc31 (diff) |
Add searching for apps in autofill settings page
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/app_list_item.xml | 23 | ||||
-rw-r--r-- | app/src/main/res/layout/autofill_recycler_view.xml | 7 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/layout/app_list_item.xml b/app/src/main/res/layout/app_list_item.xml new file mode 100644 index 00000000..7df28cc6 --- /dev/null +++ b/app/src/main/res/layout/app_list_item.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal" + android:paddingLeft="8dp" + android:paddingRight="8dp"> + + <ImageView + android:id="@android:id/icon1" + android:layout_width="48dp" + android:layout_height="48dp"/> + + <TextView android:id="@android:id/text1" + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_vertical" + android:minHeight="?android:attr/listPreferredItemHeightSmall" + android:textAppearance="?android:attr/textAppearanceListItemSmall" + android:layout_marginLeft="8dp"/> + +</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/autofill_recycler_view.xml b/app/src/main/res/layout/autofill_recycler_view.xml index 27afa77d..98ff779d 100644 --- a/app/src/main/res/layout/autofill_recycler_view.xml +++ b/app/src/main/res/layout/autofill_recycler_view.xml @@ -4,6 +4,13 @@ android:layout_width="match_parent" android:layout_height="match_parent"> + <SearchView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:id="@+id/app_search" + android:queryHint="Add an app to configure" + android:iconifiedByDefault="false"/> + <android.support.v7.widget.RecyclerView android:id="@+id/autofill_recycler" android:scrollbars="vertical" |