diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-08-17 03:09:01 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2024-08-17 03:09:01 +0000 |
commit | 0a0d7e95b44a9c5c4926f3d566035caee3862838 (patch) | |
tree | be238d782761860577d19c276718df416df1e520 /app/src/main/res | |
parent | 75f5a3637a6707bcc2ff17783e08985390bb88ef (diff) | |
download | infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar.gz infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar.bz2 infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar.lz infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar.xz infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.tar.zst infinity-for-reddit-0a0d7e95b44a9c5c4926f3d566035caee3862838.zip |
Optimize subreddit auto complete.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/item_recent_search_query.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/res/layout/item_recent_search_query.xml b/app/src/main/res/layout/item_recent_search_query.xml index 2ca122f4..97dc3627 100644 --- a/app/src/main/res/layout/item_recent_search_query.xml +++ b/app/src/main/res/layout/item_recent_search_query.xml @@ -17,7 +17,10 @@ android:id="@+id/recent_search_query_text_view_item_recent_search_query" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_margin="16dp" + android:layout_marginTop="16dp" + android:layout_marginBottom="4dp" + android:layout_marginStart="16dp" + android:layout_marginEnd="16dp" android:fontFamily="?attr/font_family" android:textSize="?attr/font_default" android:singleLine="true" @@ -28,6 +31,7 @@ android:id="@+id/recent_search_query_where_text_view_item_recent_search_query" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_marginTop="4dp" android:layout_marginBottom="16dp" android:layout_marginStart="16dp" android:layout_marginEnd="16dp" |