Changed Snack bar anchor view

Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2022-10-17 19:18:54 +03:00 committed by Alexander Borsuk
parent c346f5406e
commit 1b62ba2f1d
2 changed files with 3 additions and 3 deletions

View file

@ -1526,7 +1526,7 @@ public class PlacePageView extends NestedScrollViewClickFixed
{
Utils.copyTextToClipboard(ctx, items.get(0));
Utils.showSnackbarAbove(mDetails,
getRootView().findViewById(R.id.menu_frame),
getRootView().findViewById(R.id.pp_buttons_layout),
ctx.getString(R.string.copied_to_clipboard, items.get(0)));
}
else
@ -1542,7 +1542,7 @@ public class PlacePageView extends NestedScrollViewClickFixed
final int id = item.getItemId();
Utils.copyTextToClipboard(ctx, items.get(id));
Utils.showSnackbarAbove(mDetails,
getRootView().findViewById(R.id.menu_frame),
getRootView().findViewById(R.id.pp_buttons_layout),
ctx.getString(R.string.copied_to_clipboard, items.get(id)));
return true;
});

View file

@ -99,7 +99,7 @@ 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, view.getRootView().findViewById(R.id.menu_frame),
Utils.showSnackbarAbove(view, view.getRootView().findViewById(R.id.pp_buttons_layout),
ctx.getString(R.string.copied_to_clipboard, phoneNumber));
return true;
}