单击按钮时更改ActionBar布局

时间:2014-08-01 11:58:01

标签: java android-actionbar

当我点击按钮时,我想更改自定义布局的操作栏的操作栏。

我没有找到解决方案。

我试过

getActionBar().setCustomView(R.layout.actionbar_layout); 

但它不起作用。

谢谢你的帮助!

1 个答案:

答案 0 :(得分:2)

试试这段代码:

getActionBar().setDisplayShowCustomEnabled(true);
LayoutInflater inflater = 
              (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.actionbar_layout, null);
getActionBar().setCustomView(view);

我希望它可以帮到你。