📜  homeasupindicator 使不可见 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:10.139000             🧑  作者: Mango

代码示例1
ActionBar actionBar = getActionBar();
if (actionBar != null) {
    actionBar.setHomeButtonEnabled(false); // disable the button
    actionBar.setDisplayHomeAsUpEnabled(false); // remove the left caret
    actionBar.setDisplayShowHomeEnabled(false); // remove the icon
}