Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
did you mean a ProgressBar indeterminate in the title bar? or a custom icon in the title bar? – Franco Dec 9 '10 at 15:31

1 Answer

up vote 33 down vote accepted
@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.

share|improve this answer
awesome! thank you very much! ;-) – Sander Versluys Dec 10 '10 at 11:04
doesn't do anything (i did exactly what you specified..) – programmer Nov 30 '12 at 14:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.