我想在没有自定义工具栏的情况下使用 ActionBarDrawerToggle 而不是使用当前的 actionBar
我的代码如下:
ActionBar actionbar = getSupportActionBar();
actionbar.setDisplayHomeAsUpEnabled(true);
actionbar.setHomeAsUpIndicator(R.drawable.grid);
ActionBarDrawerToggle mToogle = new ActionBarDrawerToggle(this, drawerLayout, actionbar, R.string.app_name, R.string.app_name);
我知道我应该使用:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
并在 ActionBarDrawerToggle 中使用 toolBar 而不是操作栏,但是我可以在没有新工具栏的情况下使用 ActionBarDrawerToggle 吗?
我得到的错误:
error: incompatible types: ActionBar cannot be converted to Toolbar
相关分类