如何使用文本制作按钮,操作栏中的图像如下所示。
是否可以使用Inbuilt android按钮或图像按钮在操作栏中执行如下操作。
我正在使用appcompat来使用操作栏。
答案 0 :(得分:12)
是的,如果需要,您可以为自定义操作栏充气。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LayoutInflater inflater = (LayoutInflater) getActionBar()
.getThemedContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View customActionBarView = inflater.inflate(R.layout.actionbar_custom, null);
ActionBar actionBar = getActionBar();
actionBar.setDisplayOptions(
ActionBar.DISPLAY_SHOW_CUSTOM,
ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME
| ActionBar.DISPLAY_SHOW_TITLE);
actionBar.setCustomView(customActionBarView,
new ActionBar.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
setContentView(R.layout.activity_main);
}
actionbar_custom.xml将是你的布局资源,通常是一个包含你想要的任何组件的LinearLayout。
答案 1 :(得分:3)
您的意思是行动项目?http://developer.android.com/guide/topics/ui/actionbar.html#ActionItems
您需要创建菜单布局,如上面提到的指南所述。
可以在此处找到为Android设置的默认图标:http://developer.android.com/design/downloads/index.html