1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

I need a new email address

This commit is contained in:
M66B 2020-07-27 09:20:45 +02:00
parent 6476df68c4
commit 5b6c5b9297
4 changed files with 26 additions and 1 deletions

3
FAQ.md
View file

@ -2484,6 +2484,9 @@ So, it is reasonable to assume that OAuth is not supported by Yahoo anymore too.
<a name="faq112"></a>
**(112) Which email provider do you recommend?**
FairEmail is an email client only, so you need to bring your own email address.
There are plenty of email providers to choose from.
Which email provider is best for you depends on your wishes/requirements.
Please see the websites of [Restore privacy](https://restoreprivacy.com/secure-email/) or [Privacy Tools](https://www.privacytools.io/providers/email/)
for a list of privacy oriented email providers with advantages and disadvantages.

View file

@ -62,6 +62,7 @@ public class FragmentSetup extends FragmentBase {
private Button btnHelp;
private Button btnQuick;
private TextView tvQuickNew;
private TextView tvQuickRemark;
private TextView tvAccountDone;
@ -109,6 +110,7 @@ public class FragmentSetup extends FragmentBase {
btnHelp = view.findViewById(R.id.btnHelp);
btnQuick = view.findViewById(R.id.btnQuick);
tvQuickNew = view.findViewById(R.id.tvQuickNew);
tvQuickRemark = view.findViewById(R.id.tvQuickRemark);
tvAccountDone = view.findViewById(R.id.tvAccountDone);
@ -217,6 +219,14 @@ public class FragmentSetup extends FragmentBase {
}
});
tvQuickNew.setPaintFlags(tvQuickNew.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
tvQuickNew.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Helper.viewFAQ(getContext(), 112);
}
});
btnAccount.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

View file

@ -120,6 +120,17 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btnQuick" />
<eu.faircode.email.FixedTextView
android:id="@+id/tvQuickNew"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/title_setup_wizard_new"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
android:textColor="?android:attr/textColorLink"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvQuickRemarkMultiple" />
<eu.faircode.email.FixedTextView
android:id="@+id/tvQuickRemark"
android:layout_width="wrap_content"
@ -129,7 +140,7 @@
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvQuickRemarkMultiple" />
app:layout_constraintTop_toBottomOf="@id/tvQuickNew" />
<!-- account -->

View file

@ -159,6 +159,7 @@
<string name="title_setup_quick_smtp">SMTP server to send messages</string>0
<string name="title_setup_wizard">Wizard</string>
<string name="title_setup_wizard_multiple">The installation wizard can be used multiple times to set up multiple accounts</string>
<string name="title_setup_wizard_new">I need a new email address</string>
<string name="title_setup_wizard_remark">Go \'back\' to go to the inbox</string>
<string name="title_setup_gmail" translatable="false">Gmail</string>
<string name="title_setup_outlook" translatable="false">Outlook</string>