How to show Popup menu always at bottom of the anchor view. This is the code I'm using to display popup menu.
PopupMenu popup = new PopupMenu(activityReference, view, Gravity.NO_GRAVITY);
popup.getMenuInflater()
.inflate(R.menu.popup_menu_event_edit, popup.getMenu());
popup.show();
I have tried changinging the Gravity.NO_GRAVITY to Gravity.BOTTOM. But its not working.