From e040bf2be847a6960c200d649abaec4959e77270 Mon Sep 17 00:00:00 2001 From: M66B Date: Mon, 5 Apr 2021 12:58:26 +0200 Subject: [PATCH] Added info button --- .../faircode/email/FragmentOptionsNotifications.java | 9 +++++++++ .../res/layout/fragment_options_notifications.xml | 12 +++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java b/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java index 3cf391919a..a04fba3a55 100644 --- a/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java +++ b/app/src/main/java/eu/faircode/email/FragmentOptionsNotifications.java @@ -58,6 +58,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared private ImageView ivChannelDefault; private Button btnManageService; private ImageView ivChannelService; + private ImageButton ibWhy; private SwitchCompat swNewestFirst; private SwitchCompat swBackground; @@ -129,6 +130,7 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared ivChannelDefault = view.findViewById(R.id.ivChannelDefault); btnManageService = view.findViewById(R.id.btnManageService); ivChannelService = view.findViewById(R.id.ivChannelService); + ibWhy = view.findViewById(R.id.ibWhy); swNewestFirst = view.findViewById(R.id.swNewestFirst); swBackground = view.findViewById(R.id.swBackground); @@ -218,6 +220,13 @@ public class FragmentOptionsNotifications extends FragmentBase implements Shared ivChannelService.setVisibility(View.GONE); + ibWhy.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + Helper.viewFAQ(v.getContext(), 2); + } + }); + swNewestFirst.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { diff --git a/app/src/main/res/layout/fragment_options_notifications.xml b/app/src/main/res/layout/fragment_options_notifications.xml index 3ab86a8330..3339b8b05c 100644 --- a/app/src/main/res/layout/fragment_options_notifications.xml +++ b/app/src/main/res/layout/fragment_options_notifications.xml @@ -130,6 +130,16 @@ app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/btnManageService" /> + +