如何删除抽屉式导航图标图标、抽屉式

2023-09-06 09:33:20 作者:Eternally 永恒

如何删除尖图标的导航抽屉,我只是在玩弄导航抽屉,我只是想保持唯一的一个图标。

How to remove pointed icon in Navigation Drawer, I just playing with Navigation Drawer, I just wanted to maintain only one icon.

推荐答案

我有同样的问题,我解决了加入这一行的onCreate()

I had same issue and I solved with adding this line in onCreate():

getActionBar().setDisplayHomeAsUpEnabled(false);

这将隐藏图标的导航抽屉。

it will hide icon from navigation drawer.