In my onCreate() I set a progress bar as follows:
getWindow().requestFeature(Window.FEATURE_PROGRESS);
getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Wi
As documentation says:
FEATURE_CUSTOM_TITLE
Flag for custom title. You cannot combine this feature with other title features.
What you can do as you mentioned is to use a custom title bar with a ProgressBar, here is an example how to accomplish that.
In the other hand, why aren't you using Action Bar?.