forked from organicmaps/organicmaps
Changed Snack bar anchor view
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
c346f5406e
commit
1b62ba2f1d
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
});
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue