开发者

Show loading icon in the activity titlebar

开发者 https://www.devze.com 2023-01-29 23:05 出处:网络
How do you show a loading icon in th开发者_StackOverflow中文版e activity titlebar?@Override public void onCreate(Bundle icicle) {

How do you show a loading icon in th开发者_StackOverflow中文版e activity titlebar?


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

Then... where ever you want:

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

Make sure to use requestWindowFeature before setContentView.

0

精彩评论

暂无评论...
验证码 换一张
取 消