gpt4 book ai didi

Gingerbread 上带有 appcompat 的 Android Up 按钮,标题不可点击

转载 作者:行者123 更新时间:2023-11-30 02:51:12 24 4
gpt4 key购买 nike

我们正在使用 appcompat 库来使用 ActionBar 到 Gingerbread,我们正在启用 Activity 上的主页按钮(还包括 list 中两个版本的 parentActivityName 设置)。

但测试人员报告的不同之处在于向上按钮的“大小”。在较新的设备上,您可以单击 Activity 的向上箭头、 Logo 或标题。但在 Gingerbread 上,只有较小的箭头区域和 Logo 是可点击的。标题不可点击。

有没有办法让这种行为相同,并且在 Gingerbread 上也可以点击标题?

最佳答案

据我所知,没有本地方法可以做到这一点。

使标题和 Logo 都可以点击是后来版本中引入的功能。

但是,是的,您始终可以制作自定义 View 并将其设置为 ActionBar 的 View 。

    ActionBar actionBar = getActionBar();

actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setHomeButtonEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(false);

LayoutInflater inflator = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.custom_action_bar, null);
actionBar.setCustomView(v);

关于Gingerbread 上带有 appcompat 的 Android Up 按钮,标题不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24120774/

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