Combine custom title with FEATURE_PROGRESS
Asked Answered
A

1

5

In my onCreate() I set a progress bar as follows:

getWindow().requestFeature(Window.FEATURE_PROGRESS);
getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON);

Now, wishing to enhance that title bar a little bit, I want to change its background color. First step is to check if FEATURE_CUSTOM_TITLE is supported:

final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
if ( customTitleSupported ) {
    Log.i(TAG, "CUSTOM TITLE SUPPORTED!")
}

But as soon as I call that requestWindowFeature(Window.FEATURE_CUSTOM_TITLE) I get an:

AndroidRuntimeException: You cannot combine custom titles with other title features

(It doesn't matter if I call this function before setting FEATURE_PROGRESS or after)

Any idea how to work around this?

Alternatively, I would avoid a custom title bar, if I could find the non-custom title bar's resource ID. Something that's better than the dangerous getParent().

Is this possible?

Allie answered 28/6, 2012 at 23:38 Comment(0)
C
1

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?.

Calcareous answered 25/8, 2012 at 18:20 Comment(1)
Because ActionBar is only present in Android 3.0+ and I need to run on 2.x as well.Allie

© 2022 - 2024 — McMap. All rights reserved.