mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-21 14:32:24 +01:00
Added FAQ about importing contacts
This commit is contained in:
@@ -85,6 +85,7 @@ public class FragmentSetup extends FragmentBase {
|
||||
|
||||
private TextView tvPermissionsDone;
|
||||
private Button btnPermissions;
|
||||
private TextView tvImportContacts;
|
||||
|
||||
private TextView tvDozeDone;
|
||||
private Button btnDoze;
|
||||
@@ -146,6 +147,7 @@ public class FragmentSetup extends FragmentBase {
|
||||
|
||||
tvPermissionsDone = view.findViewById(R.id.tvPermissionsDone);
|
||||
btnPermissions = view.findViewById(R.id.btnPermissions);
|
||||
tvImportContacts = view.findViewById(R.id.tvImportContacts);
|
||||
|
||||
tvDozeDone = view.findViewById(R.id.tvDozeDone);
|
||||
btnDoze = view.findViewById(R.id.btnDoze);
|
||||
@@ -407,6 +409,14 @@ public class FragmentSetup extends FragmentBase {
|
||||
}
|
||||
});
|
||||
|
||||
tvImportContacts.setPaintFlags(tvImportContacts.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||
tvImportContacts.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Helper.viewFAQ(v.getContext(), 172, true);
|
||||
}
|
||||
});
|
||||
|
||||
btnDoze.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
|
||||
Reference in New Issue
Block a user