1

如何使菜单图标显示在标题旁边,如操作栏图片下方? 操作栏

这是我的程序图片,可以吗?请帮忙~谢谢

我的程序

这是我的代码

public void openOptionsMenu() { 
    // TODO Auto-generated method stub 
    super.openOptionsMenu(); 
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    //call the base class to include system menus
    super.onCreateOptionsMenu(menu);

        int group1 = 1;
        MenuItem bakchome = menu.add(group1,1,1,"Add News");
        bakchome.setIcon(R.drawable.ic_menu_add);

    return true;
}

@Override 
public boolean onOptionsItemSelected(MenuItem item) {
        switch(item.getItemId()) {
        case 1:
            ProgressDialog progress1 = new ProgressDialog(News.this);
            progress1.setMessage("Loading...please wait..");
            progress1.setTitle("Planbiz");
            new MyTask(progress1).execute();
            Intent intent1 = new Intent(getApplicationContext(), News_Edit.class);

            startActivity(intent1);
            break;

        }

    return true;
}

对不起,我是新用户,无法上传图片。抱歉,如果我不能很好地解释我的问题。

4

2 回答 2

1

这可能会帮助你

在android系统中实现自定义菜单

他们还谈到了定制菜单

于 2012-07-13T09:33:48.037 回答
1

您希望您的菜单项出现在我认为的操作栏中吗?

将此添加到您的菜单项:

android:showAsAction="true"
于 2012-07-13T09:23:03.940 回答