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
