如何使菜单图标显示在标题旁边,如操作栏图片下方?
这是我的程序图片,可以吗?请帮忙~谢谢
这是我的代码
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;
}
对不起,我是新用户,无法上传图片。抱歉,如果我不能很好地解释我的问题。