mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-14 04:53:22 +02:00
Added hint about ActiveSync support
This commit is contained in:
@@ -85,6 +85,7 @@ public class FragmentAccount extends FragmentBase {
|
||||
private ContentLoadingProgressBar pbAutoConfig;
|
||||
|
||||
private TextView tvPopSupport;
|
||||
private TextView tvActiveSyncSupport;
|
||||
private EditText etHost;
|
||||
private RadioGroup rgEncryption;
|
||||
private CheckBox cbInsecure;
|
||||
@@ -180,6 +181,7 @@ public class FragmentAccount extends FragmentBase {
|
||||
pbAutoConfig = view.findViewById(R.id.pbAutoConfig);
|
||||
|
||||
tvPopSupport = view.findViewById(R.id.tvPopSupport);
|
||||
tvActiveSyncSupport = view.findViewById(R.id.tvActiveSyncSupport);
|
||||
etHost = view.findViewById(R.id.etHost);
|
||||
etPort = view.findViewById(R.id.etPort);
|
||||
rgEncryption = view.findViewById(R.id.rgEncryption);
|
||||
@@ -284,6 +286,15 @@ public class FragmentAccount extends FragmentBase {
|
||||
}
|
||||
});
|
||||
|
||||
tvActiveSyncSupport.setPaintFlags(tvActiveSyncSupport.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||
tvActiveSyncSupport.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Uri uri = Uri.parse(Helper.FAQ_URI + "#user-content-frequently-requested-features");
|
||||
Helper.view(getContext(), uri, false);
|
||||
}
|
||||
});
|
||||
|
||||
etDomain.addTextChangedListener(new TextWatcher() {
|
||||
@Override
|
||||
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
|
||||
|
||||
Reference in New Issue
Block a user