在活动标题栏中显示加载图标

San*_*uys 12 user-interface android

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

Cri*_*ian 37

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

然后......你想要的地方:

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

确保使用requestWindowFeature之前setContentView.