Is it possible to add progressbar to ActionBarSherlock? I need to show and hide it in particular time. But it has to be located inside ActionBarSherlock.
Code of my
For full compatibility you should use:
setSupportProgressBarIndeterminateVisibility(true);
Here is an example:
public class MyActivity extends SherlockFragmentActivity {
//...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setContentView(R.layout.my_layout);
//...
setSupportProgressBarIndeterminateVisibility(true);
}
}