如何在没有栏的情况下添加菜单

时间:2017-04-07 08:40:03

标签: android

我见过很多应用程序 没有动作栏 但有菜单怎么样? 喜欢这张照片 enter image description here 我该如何创建

1 个答案:

答案 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();
}