当我点击按钮时,我想更改自定义布局的操作栏的操作栏。
我没有找到解决方案。
我试过
getActionBar().setCustomView(R.layout.actionbar_layout);
但它不起作用。
谢谢你的帮助!
答案 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);
我希望它可以帮到你。