diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-10-13 16:08:21 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-10-13 16:08:21 +0000 |
commit | fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2 (patch) | |
tree | 276b3e1b0a87d5df9c86da4e8c926a5a06a1f6a6 /app/src/main/res | |
parent | d82b1e63051465fa45578884ef9bc17314d89af8 (diff) | |
download | infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar.gz infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar.bz2 infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar.lz infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar.xz infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.tar.zst infinity-for-reddit-fdca23fa14c5f42b028a0598e9fb2c4ae6a696f2.zip |
Add a time option to some sort types. Remember the last sort type.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/fragment_sort_time_bottom_sheet.xml | 100 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/xml/searchable.xml | 2 |
3 files changed, 107 insertions, 1 deletions
diff --git a/app/src/main/res/layout/fragment_sort_time_bottom_sheet.xml b/app/src/main/res/layout/fragment_sort_time_bottom_sheet.xml new file mode 100644 index 00000000..d08066e0 --- /dev/null +++ b/app/src/main/res/layout/fragment_sort_time_bottom_sheet.xml @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + android:paddingBottom="8dp" + tools:context=".Fragment.SortTimeBottomSheetFragment"> + + <TextView + android:id="@+id/hour_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_hour" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/day_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_day" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/week_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_week" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/month_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_month" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/year_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_year" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/all_time_text_view_sort_time_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/sort_time_all_time" + android:textColor="@color/primaryTextColor" + android:textSize="?attr/font_default" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + +</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index bcd99f75..f37430d3 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -188,6 +188,12 @@ <string name="sort_relevance">Relevance</string> <string name="sort_comments">Comments</string> <string name="sort_activity">Activity</string> + <string name="sort_time_hour">Hour</string> + <string name="sort_time_day">Day</string> + <string name="sort_time_week">Week</string> + <string name="sort_time_month">Month</string> + <string name="sort_time_year">Year</string> + <string name="sort_time_all_time">All Time</string> <string name="open_link_with">Open link with</string> <string name="no_browser_found">No browser found</string> diff --git a/app/src/main/res/xml/searchable.xml b/app/src/main/res/xml/searchable.xml index 9b87146c..4512198f 100644 --- a/app/src/main/res/xml/searchable.xml +++ b/app/src/main/res/xml/searchable.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <searchable xmlns:android="http://schemas.android.com/apk/res/android" - android:label="@string/app_label" + android:value="@string/app_label" android:hint="@string/search_hint" android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" > </searchable>
\ No newline at end of file |