刷新后 ActionBarDrawerToggle 菜单图标出现问题 appcompat_v7

Problems with ActionBarDrawerToggle menu icon afer refreshing appcompat_v7

刷新后 appcompat_v7 我需要用菜单图标删除描边。 我现在在这个地方有背影!

mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
        //  R.drawable.menu, // i was had to delete it
            R.string.app_name, // nav drawer open  
            R.string.app_name // nav drawer close 
    )

那么现在如何添加菜单图标呢?谢谢

所以,我添加了

getActivity().getActionBar().setDisplayShowHomeEnabled(true);

在每个片段中。显示了菜单,但是颜色是灰色的。

我在 styles.xml

中添加了一笔,将灰色更改为白色
<item name="android:textColorSecondary">@color/white</item>