当前位置: 代码迷 >> Android >> android ActionBar 最左侧图标,怎么设成不能点击
  详细解决方案

android ActionBar 最左侧图标,怎么设成不能点击

热度:153   发布时间:2016-04-28 05:57:58.0
android ActionBar 最左侧图标,如何设成不能点击?
可以用android.R.id.home获取,但是不知道怎么设成不可 点击。
------解决方案--------------------
getActionBar().setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE)
试试
------解决方案--------------------
ActionBar actionBar = mActivity.getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(false);
  相关解决方案