如何在Android操作栏中居中图像,每侧都有动作项目

时间:2014-04-09 15:02:30

标签: java android xml android-actionbar

是的,之前已经问过这个问题。实际上是两次,

ActionBar - custom view with centered ImageView, Action Items on sides

ActionBar logo centered and Action items on sides

是的我已经彻底阅读了两者并且它的工作原理除外,我无法弄清楚如何将项目放到图像的左侧。引用第二个链接:

  

当然,请确保您还要进行其他必要的设置   菜单xml中的操作项也是如此。这将适用于任何人   右侧行动项目。

没什么帮助。这不适用于展示位置:

To take control of the left action item, you could do this in your Activity:

@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case R.id.yourRightActionItem:
                        //do something
                        return true;
        case android.R.id.home: //<-- this will be your left action item
            // do something
            return true;
        default:
            return super.onOptionsItemSelected(item);
        }
    }

我尝试了很多东西,但从来没有能够让左边的按钮。有人可以帮我解决这个问题吗?

0 个答案:

没有答案