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
.