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.

i am trying to display the indeterminate progress bar in the SherlockFragmentActivity but my code displays only the ActionBar without the ProgreessBar in it

Here is My code i am running in Android 4.1.1

import com.actionbarsherlock.view.Window;
....
....
public class SowahActivity extends SherlockFragmentActivity{
....
...
...
protected void onCreate(Bundle savedInstanceState) {

        requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
        setSupportProgressBarIndeterminateVisibility(true);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.my_list_view);
}
...
...
}

what makes the progress dialog not appearing in the Actionbar

share|improve this question

2 Answers

up vote 2 down vote accepted

You are attempting to set the progress bar before the Activity has been created. Try reordering it like this instead:

requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
super.onCreate(savedInstanceState);
setContentView(R.layout.my_list_view);
setSupportProgressBarIndeterminateVisibility(true);    
share|improve this answer
The request should be before the super call. The setSupport call should be after setContentView. – Jake Wharton Aug 20 '12 at 1:37
Oops, thanks for that. – Alex Lockwood Aug 20 '12 at 2:03
1  
The reason this won't work before setContentView is that the action bar hasn't initialized its views yet hence there is nothing to set. You need to trigger the initialization someway before you set the visibility, even if that's only making a dummy call to getSupportActionBar(). – Jake Wharton Aug 20 '12 at 2:46
@JakeWharton Right, that makes sense. BTW, Jake I think you're the man. It's my dream to be a total badass coder like you someday... and ActionBarSherlock is incredible :) – Alex Lockwood Aug 21 '12 at 23:33
 //This has to be called before setContentView and you must use the
        //class in com.actionbarsherlock.view and NOT android.view
        requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
share|improve this answer

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.