我的应用中有一个不是启动器的活动。 我想添加一个带切换器的导航抽屉。我尝试按照http://developer.android.com/training/implementing-navigation/nav-drawer.html#ActionBarIcon
中的说明操作但我的后退导航仍然显示(它已退出应用程序,因为我已添加适当的标志到意图) 如何显示抽屉切换器图标?
不推荐使用android.support.v4.app.ActionBarDrawerToggler,我应该使用什么呢?
答案 0 :(得分:0)
for android.support.v4.app.ActionBarDrawerToggler不建议使用新的获取支持库supporv7 appcompact check here https://developer.android.com/intl/es/reference/android/support/v4/app/ActionBarDrawerToggle.html
并在此处创建导航抽屉,您将获得所有信息 http://developer.android.com/intl/es/training/implementing-navigation/nav-drawer.html
代码示例
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
使用最新的支持库,您将轻松完成它,而不是使用setHomeasUpEnabled(true)