mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Auto select insert contact group target
This commit is contained in:
parent
13277bf3e4
commit
adbebd29b0
1 changed files with 14 additions and 0 deletions
|
@ -1221,6 +1221,17 @@ public class FragmentCompose extends FragmentBase {
|
|||
Bundle args = new Bundle();
|
||||
args.putLong("working", working);
|
||||
|
||||
int focussed = 0;
|
||||
View v = view.findFocus();
|
||||
if (v != null) {
|
||||
if (v.getId() == R.id.etCc)
|
||||
focussed = 1;
|
||||
else if (v.getId() == R.id.etBcc)
|
||||
focussed = 2;
|
||||
}
|
||||
|
||||
args.putInt("focussed", focussed);
|
||||
|
||||
FragmentDialogContactGroup fragment = new FragmentDialogContactGroup();
|
||||
fragment.setArguments(args);
|
||||
fragment.setTargetFragment(this, REQUEST_CONTACT_GROUP);
|
||||
|
@ -4184,6 +4195,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
@Override
|
||||
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
|
||||
final long working = getArguments().getLong("working");
|
||||
int focussed = getArguments().getInt("focussed");
|
||||
|
||||
View dview = LayoutInflater.from(getContext()).inflate(R.layout.dialog_contact_group, null);
|
||||
final Spinner spGroup = dview.findViewById(R.id.spGroup);
|
||||
|
@ -4211,6 +4223,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
0);
|
||||
spGroup.setAdapter(adapter);
|
||||
|
||||
spTarget.setSelection(focussed);
|
||||
|
||||
return new AlertDialog.Builder(getContext())
|
||||
.setView(dview)
|
||||
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
||||
|
|
Loading…
Reference in a new issue