How to back up messages

This commit is contained in:
M66B
2023-01-28 10:34:49 +01:00
parent d80f0adbad
commit 52d8b0b402
4 changed files with 30 additions and 5 deletions

View File

@@ -113,6 +113,7 @@ public class FragmentOptionsBackup extends FragmentBase implements SharedPrefere
private Button btnExport;
private TextView tvExportPro;
private Button btnImport;
private TextView tvBackupMessages;
private CardView cardCloud;
private ImageButton ibCloudInfo;
private TextView tvCloudPro;
@@ -157,6 +158,7 @@ public class FragmentOptionsBackup extends FragmentBase implements SharedPrefere
btnExport = view.findViewById(R.id.btnExport);
tvExportPro = view.findViewById(R.id.tvExportPro);
btnImport = view.findViewById(R.id.btnImport);
tvBackupMessages = view.findViewById(R.id.tvBackupMessages);
cardCloud = view.findViewById(R.id.cardCloud);
ibCloudInfo = view.findViewById(R.id.ibCloudInfo);
tvCloudPro = view.findViewById(R.id.tvCloudPro);
@@ -207,6 +209,14 @@ public class FragmentOptionsBackup extends FragmentBase implements SharedPrefere
}
});
tvBackupMessages.getPaint().setUnderlineText(true);
tvBackupMessages.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Helper.viewFAQ(v.getContext(), 151);
}
});
btnLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {