gpt4 book ai didi

android - 右上角的抽屉导航图标显示后退箭头图标而不是汉堡包图标

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:11:30 27 4
gpt4 key购买 nike

我已经使用 Navigation Drawer Activity 创建了一个新的 Android 应用程序。当我执行应用程序时,右上角的图标显示后退箭头,但它必须是第 3 行的图标。

图标R.drawable.ic_drawer是这个

enter image description here

在 NavigationDrawerFragment 类中。

// ActionBarDrawerToggle ties together the the proper interactions
// between the navigation drawer and the action bar app icon.
mDrawerToggle = new ActionBarDrawerToggle(
getActivity(), /* host Activity */
mDrawerLayout, /* DrawerLayout object */
R.drawable.ic_drawer, /* nav drawer image to replace 'Up' caret */
R.string.navigation_drawer_open, /* "open drawer" description for accessibility */
R.string.navigation_drawer_close /* "close drawer" description for accessibility */
)

当我执行应用程序时,我会在右侧看到箭头图标。

enter image description here

选择后图标也是一样的。

enter image description here

我现在如何更改它?

最佳答案

希望这对您有所帮助,我通过这种方式解决了上述问题。 @shkschneider 是对的。要使您的代码正常工作,请导入 android.support.v7.app.ActionBarDrawerToggle

mDrawerToggle = new ActionBarDrawerToggle(this,
mDrawerLayout,
R.string.drawer_open,
R.string.drawer_close){

@Override
public void onDrawerClosed(View drawerView) {
getSupportActionBar().setTitle(mTitle);
invalidateOptionsMenu();
}

@Override
public void onDrawerOpened(View drawerView) {
getSupportActionBar().setTitle(mDrawerTitle);
invalidateOptionsMenu();
}
};

关于android - 右上角的抽屉导航图标显示后退箭头图标而不是汉堡包图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30071267/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com