2020-08-05 16:45:52 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-12-04 18:31:58 -05:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-05 16:45:52 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/TextAppearance.AppCompat.Subhead"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:paddingLeft="?attr/dialogPreferredPadding"
|
|
|
|
android:paddingRight="?attr/dialogPreferredPadding"
|
|
|
|
android:text="@string/GroupMentionSettingDialog_receive_notifications_when_youre_mentioned_in_muted_chats" />
|
|
|
|
|
|
|
|
<CheckedTextView
|
|
|
|
android:id="@+id/group_mention_setting_always_notify"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
android:drawableStart="?android:attr/listChoiceIndicatorSingle"
|
|
|
|
android:drawablePadding="20dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?attr/listPreferredItemHeightSmall"
|
|
|
|
android:paddingStart="20dp"
|
|
|
|
android:paddingEnd="?attr/dialogPreferredPadding"
|
|
|
|
android:text="@string/GroupMentionSettingDialog_always_notify_me"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2020-09-10 14:40:29 -04:00
|
|
|
android:textColor="?attr/textColorAlertDialogListItem"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:theme="@style/Signal.Widget.CompoundButton.RadioButton" />
|
2020-08-05 16:45:52 -04:00
|
|
|
|
|
|
|
<CheckedTextView
|
|
|
|
android:id="@+id/group_mention_setting_dont_notify"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
android:drawableStart="?android:attr/listChoiceIndicatorSingle"
|
|
|
|
android:drawablePadding="20dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?attr/listPreferredItemHeightSmall"
|
|
|
|
android:paddingStart="20dp"
|
|
|
|
android:paddingEnd="?attr/dialogPreferredPadding"
|
|
|
|
android:text="@string/GroupMentionSettingDialog_dont_notify_me"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2020-09-10 14:40:29 -04:00
|
|
|
android:textColor="?attr/textColorAlertDialogListItem"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:theme="@style/Signal.Widget.CompoundButton.RadioButton" />
|
2020-08-05 16:45:52 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|