0

你好,我创建了一个菜单onCreateOptionsMenu。这是代码:

public boolean onCreateOptionsMenu(Menu menu) {

    boolean result = super.onCreateOptionsMenu(menu);
    menu.add(0, INSERT_ID, 0, R.string.menu_insert);
    return result;

}

它工作正常,但字符串menu_insert显示在弹出菜单的最左侧。有没有办法将字符串对齐到中心?对不起,如果这是一个新手问题。

提前非常感谢!

4

1 回答 1

0

You should use the xml to create a menu and on top of that you can use the ActionBar, read here

于 2013-09-08T20:40:10.430 回答