我见过很多应用程序 没有动作栏 但有菜单怎么样? 喜欢这张照片 enter image description here 我该如何创建
答案 0 :(得分:0)
http://developer.android.com/guide/topics/ui/menus.html
了解更多^
public void Noactionbar(View v) {
PopupMenu popup = new PopupMenu(this, v);
MenuInflater inflater = popup.getMenuInflater();
inflater.inflate(R.menu.actions, popup.getMenu());
popup.show();
}