mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 13:48:58 +00:00
Set query text on long press quick search buttons
This commit is contained in:
parent
93a4bda5fe
commit
19b92d4f0c
1 changed files with 2 additions and 0 deletions
|
@ -210,6 +210,8 @@ public class FragmentDialogSearch extends FragmentDialogBase {
|
|||
public boolean onLongClick(View v) {
|
||||
String text = ((TextView) v).getText().toString();
|
||||
|
||||
etQuery.setText(text);
|
||||
|
||||
ClipboardManager cbm = Helper.getSystemService(v.getContext(), ClipboardManager.class);
|
||||
cbm.setPrimaryClip(ClipData.newPlainText(getString(R.string.app_name), text));
|
||||
|
||||
|
|
Loading…
Reference in a new issue