gpt4 book ai didi

android - 主页图标未显示在 ActionBar 中的汉堡包图标旁边

转载 作者:行者123 更新时间:2023-11-29 20:56:05 25 4
gpt4 key购买 nike

我正在为 DrawerLayout 使用 AppCompat 库。但是,操作栏未在汉堡菜单图标旁边显示启动器图标。我尝试了几种方法来解决这个问题,但都没有奏效。任何人都知道如何解决它?

我想显示一张图片,就像这里的汉堡包图标旁边可以看到 Google+ 图标一样。

enter image description here

最好的问候

最佳答案

appIcon/launcher 图标没有出现在 actionBar 中的原因是因为 Material Design 的新设计指南(感谢 CommonsWare 告知)。不过,我使用了一种更简单、更容易的解决方案——Custom ActionBar。

步骤:

  1. 创建一个遵循操作栏设计模式的 XML 文件
  2. Activity 中:

    LayoutInflater inflater = LayoutInflater.from(this);
    inflater.inflate(R.layout.custom_action_bar, null);

    getSupportActionBar().setHomeEnabled(true); // for burger icon
    getSupportActionBar().setDisplayHomeAsUpEnabled(true); // burger icon related
    getSupportActionBar().setDisplayShowCustomEnabled(true); // CRUCIAL - for displaying your custom actionbar

    getSupportActionBar().setDisplayShowTitleEnabled(true); // false for hiding the title from actoinBar

希望这会节省一些时间。

关于android - 主页图标未显示在 ActionBar 中的汉堡包图标旁边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27721421/

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