1
0
Fork 0
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:
M66B 2023-10-17 15:51:14 +02:00
parent 93a4bda5fe
commit 19b92d4f0c

View file

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