gpt4 book ai didi

android - setDisplayHomeAsUpEnabled 使用样式属性

转载 作者:行者123 更新时间:2023-11-29 15:01:49 25 4
gpt4 key购买 nike

在使用 AppCompatActivity 时是否可以指定 getSupportActionBar().setDisplayHomeAsUpEnabled(true) 使用样式,而不是以编程方式这样做?

我可以指定可绘制对象本身,但如何使用样式启用它?

<style name="MyActivityTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarTheme">@style/MyActionBar</item>
</style>

<style name="MyActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="homeAsUpIndicator">@drawable/ic_clear</item>
<!-- Enable the above using a style attribute -->
</style>

最佳答案

在风格上:

<style name="MyActionBarStyle" parent="Widget.AppCompat.Light.ActionBar.Solid">
<item name="displayOptions">showTitle|homeAsUp</item>
</style>

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
...
<item name="actionBarStyle">@style/MyActionBarStyle</item>
</style>

将用箭头启动 Activity :

enter image description here

关于android - setDisplayHomeAsUpEnabled 使用样式属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43288230/

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