我从谷歌得到这张图片,它符合我想向你展示的内容。我只想得到蓝色的结果,我想通过代码(而不是通过 xml 文件)来做到这一点。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
menu.add(Menu.NONE, Menu.NONE, Menu.NONE, "Add").setIcon(R.drawable.myicon);
return true;
}
问题是值“添加”出现在图像的橙色箭头内,我想用图像显示在外面(在左侧)。
我怎样才能做到这一点?谢谢。