Sander Versluys
Sander Versluys

Reputation: 74437

Show loading icon in the activity titlebar

How do you show a loading icon in the activity titlebar?

Upvotes: 12

Views: 5415

Answers (1)

Cristian
Cristian

Reputation: 200080

@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.

Upvotes: 37

Related Questions