Show a suicide prevention quote when searching suicide.

This commit is contained in:
Alex Ning
2021-03-07 00:05:09 +08:00
parent a03cdfe814
commit 31f4739a17
12 changed files with 207 additions and 31 deletions

View File

@@ -8,7 +8,6 @@
tools:context=".activities.FetchRandomSubredditOrPostActivity">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_animation_view_fetch_random_subreddit_or_post_activity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"

View File

@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/linear_layout_suicide_prevention_activity"
tools:context=".activities.SuicidePreventionActivity">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_animation_view"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_gravity="center_horizontal"
app:lottie_autoPlay="true"
app:lottie_loop="true"
app:lottie_rawRes="@raw/love" />
<TextView
android:id="@+id/quote_text_view_suicide_prevention_activity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="16dp"
android:text="@string/suicide_prevention_quote"
android:fontFamily="?attr/font_family"
android:textSize="?attr/font_20" />
<LinearLayout
android:id="@+id/linear_layout_check_box_wrapper_suicide_prevention_activity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<com.google.android.material.checkbox.MaterialCheckBox
android:id="@+id/do_not_show_this_again_check_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/do_not_show_this_again_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/do_not_show_this_again"
android:layout_gravity="center_vertical"
android:fontFamily="?attr/font_family"
android:textSize="?attr/font_default" />
<com.google.android.material.button.MaterialButton
android:id="@+id/continue_button_suicide_prevention_activity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:text="@string/continue_suicide_prevention_activity" />
</LinearLayout>
</LinearLayout>

File diff suppressed because one or more lines are too long

View File

@@ -543,6 +543,7 @@
<string name="settings_show_avatar_on_the_right_in_the_navigation_drawer">Show Avatar on the Left in the Navigation Drawer</string>
<string name="settings_backup_settings_title">Backup Settings</string>
<string name="settings_restore_settings_title">Restore Settings</string>
<string name="settings_credits_love_animation_title">Love Animation</string>
<string name="no_link_available">Cannot get the link</string>
@@ -1047,4 +1048,8 @@
<string name="restore_settings_failed_file_corrupted">Cannot restore settings. The file may be corrupted.</string>
<string name="restore_settings_failed_cannot_get_file">Cannot access the file</string>
<string name="suicide_prevention_quote">If you are looking for a sign not to kill yourself, this is it.\u2764</string>
<string name="do_not_show_this_again">Do not show this again</string>
<string name="continue_suicide_prevention_activity">Continue</string>
</resources>

View File

@@ -51,4 +51,9 @@
app:title="@string/settings_credits_ufo_capturing_animation_title"
android:summary="https://lottiefiles.com/33858-ufo-capturing-animation" />
<Preference
app:key="love_animation"
app:title="@string/settings_credits_love_animation_title"
android:summary="https://lottiefiles.com/52103-love" />
</PreferenceScreen>