Why do I need to select an on-device account?

This commit is contained in:
M66B
2022-07-15 18:53:31 +02:00
parent 4c9f0230ed
commit dac7683078
4 changed files with 30 additions and 2 deletions

View File

@@ -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