Don't show snackbar after text is copy to clipboard

Signed-off-by: Jean-BaptisteC <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
Jean-Baptiste 2023-11-19 08:54:26 +01:00 committed by Roman Tsisyk
parent 8930a32c20
commit e706025dd3
3 changed files with 18 additions and 6 deletions

View file

@ -1,6 +1,7 @@
package app.organicmaps.widget.placepage;
import android.content.Context;
import android.os.Build;
import android.view.Menu;
import android.view.View;
import android.widget.PopupMenu;
@ -78,8 +79,11 @@ public class PlacePageUtils
public static void copyToClipboard(Context context, View frame, String text)
{
Utils.copyTextToClipboard(context, text);
Utils.showSnackbarAbove(frame.getRootView().findViewById(R.id.pp_buttons_layout), frame,
context.getString(R.string.copied_to_clipboard, text));
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU)
{
Utils.showSnackbarAbove(frame.getRootView().findViewById(R.id.pp_buttons_layout), frame,
context.getString(R.string.copied_to_clipboard, text));
}
}
public static void showCopyPopup(Context context, View popupAnchor, List<String> items)

View file

@ -1,6 +1,7 @@
package app.organicmaps.widget.placepage.sections;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.text.TextUtils;
import android.text.util.Linkify;
@ -136,8 +137,11 @@ public class PlacePageBookmarkFragment extends Fragment implements View.OnClickL
final Context ctx = requireContext();
Utils.copyTextToClipboard(ctx, notes);
Utils.showSnackbarAbove(mFrame.getRootView().findViewById(R.id.pp_buttons_layout), mFrame,
ctx.getString(R.string.copied_to_clipboard, notes));
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU)
{
Utils.showSnackbarAbove(mFrame.getRootView().findViewById(R.id.pp_buttons_layout), mFrame,
ctx.getString(R.string.copied_to_clipboard, notes));
}
return true;
}

View file

@ -1,6 +1,7 @@
package app.organicmaps.widget.placepage.sections;
import android.content.Context;
import android.os.Build;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
@ -87,8 +88,11 @@ public class PlacePhoneAdapter extends RecyclerView.Adapter<PlacePhoneAdapter.Vi
final String phoneNumber = mPhone.getText().toString();
final Context ctx = view.getContext();
Utils.copyTextToClipboard(ctx, phoneNumber);
Utils.showSnackbarAbove(view.getRootView().findViewById(R.id.pp_buttons_layout), view,
ctx.getString(R.string.copied_to_clipboard, phoneNumber));
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU)
{
Utils.showSnackbarAbove(view.getRootView().findViewById(R.id.pp_buttons_layout), view,
ctx.getString(R.string.copied_to_clipboard, phoneNumber));
}
return true;
}
}