我希望在我的操作栏中有一个或某些东西,用于在每次需要执行漫长过程时显示进度条不确定。 我一直在尝试使用ViewStub,我还想过使用frameLayout和一个片段,但我不确定。
答案 0 :(得分:1)
使用Activity#setProgressBarIndeterminateVisibility(boolean)
。
// This has to be called before setContentView
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
// This shows an indeterminate progress bar in the action bar
setProgressBarIndeterminateVisibility(true);
答案 1 :(得分:-1)