我的操作栏有一个标题和homeAsUp,但没有徽标或图标。
像这样:
我试过这个:
actionBar = getSupportActionBar();
actionBar.setHomeButtonEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle("My Profile");
actionBar.setDisplayUseLogoEnabled(false);
但它在标题和后退箭头之间给出了应用程序图标
谢谢你