本文介绍了ActionBar setDisplayHomeAsUpEnabled(true)与setDisplayShowHomeEnabled(true).有什么不同?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
标题几乎可以自我解释.确切的区别是什么?我将在下面发布示例代码.
The title is pretty much self explanatory. What are the exact differences? I'll post sample code below.
actionbar = getSupportActionBar();
actionbar.setDisplayHomeAsUpEnabled(true);
actionbar.setDisplayShowHomeEnabled(true);
推荐答案
文档几乎可以自我解释.
The documentation is pretty much self explanatory.
ActionBar.setDisplayShowHomeEnabled()
指定主页"按钮是否为显示.
ActionBar.setDisplayShowHomeEnabled()
specifies whether or not the Home button is shown.
ActionBar.setDisplayHomeAsUpEnabled()
指定主页"按钮是否具有
ActionBar.setDisplayHomeAsUpEnabled()
specifies whether or not the Home button has the arrow used for Up Navigation next to it.
这篇关于ActionBar setDisplayHomeAsUpEnabled(true)与setDisplayShowHomeEnabled(true).有什么不同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!