6

我如何制作带有文本的按钮,并在操作栏中使用图像,如下所示。

是否可以使用内置的 android 按钮或图像按钮在操作栏中执行如下操作。

我正在使用 appcompat 来使用操作栏。

在此处输入图像描述

4

2 回答 2

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。

于 2013-10-13T15:03:35.983 回答
3

你是说行动项目?http://developer.android.com/guide/topics/ui/actionbar.html#ActionItems

您需要创建一个菜单布局,如上面提到的指南所述。

可以在此处找到 Android 的默认图标集:http: //developer.android.com/design/downloads/index.html

于 2013-10-13T14:43:52.817 回答