mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Why do I need to select an on-device account?
This commit is contained in:
@@ -86,6 +86,7 @@ public class FragmentGmail extends FragmentBase {
|
||||
private Button btnSelect;
|
||||
private ContentLoadingProgressBar pbSelect;
|
||||
|
||||
private TextView tvOnDevice;
|
||||
private TextView tvAppPassword;
|
||||
|
||||
private TextView tvError;
|
||||
@@ -129,6 +130,7 @@ public class FragmentGmail extends FragmentBase {
|
||||
btnSelect = view.findViewById(R.id.btnSelect);
|
||||
pbSelect = view.findViewById(R.id.pbSelect);
|
||||
|
||||
tvOnDevice = view.findViewById(R.id.tvOnDevice);
|
||||
tvAppPassword = view.findViewById(R.id.tvAppPassword);
|
||||
|
||||
tvError = view.findViewById(R.id.tvError);
|
||||
@@ -200,6 +202,14 @@ public class FragmentGmail extends FragmentBase {
|
||||
}
|
||||
});
|
||||
|
||||
tvOnDevice.setPaintFlags(tvOnDevice.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||
tvOnDevice.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
Helper.viewFAQ(v.getContext(), 111);
|
||||
}
|
||||
});
|
||||
|
||||
tvAppPassword.setPaintFlags(tvAppPassword.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||
tvAppPassword.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user