gpt4 book ai didi

android - 在 Activity 标题栏中显示加载图标

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:32:07 25 4
gpt4 key购买 nike

如何在 Activity 标题栏中显示加载图标?

最佳答案

@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setContentView(R.layout.your_layout);
}

然后......无论你想去哪里:

// then, you can do this to show the icon
setProgressBarIndeterminateVisibility(true);
//or to hide it
setProgressBarIndeterminateVisibility(false);

确保在 setContentView 之前使用 requestWindowFeature

关于android - 在 Activity 标题栏中显示加载图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4399845/

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