I need a progress bar in my action bar. I am able to get it using the following code:-
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
requestWindowFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.main_screen);
progress = (LinearLayout) findViewById(R.id.progress);
setProgressBarIndeterminateVisibility(Boolean.FALSE);
this.setProgressBarIndeterminate(true);
}
However, I am also seeing a spinner with progress bar. Can someone tell me how to hide the spinner.Also i need to move the progress bar below the action bar.