I wish to extend android:WindowTitle
But parent="android:WindowTitle" no longer works in newer SDKs. It’s a private style
What is a good public replacement for parent="android:WindowTitle"?
I am getting lost reading this thread.
Any alernative way for using <style name="CustomWindowTitle" parent="android:WindowTitle"> with out machine dependent hot fixes so that my code compiles for rest of the team?
You can open android-sdk-windows\platforms\android-6\data\res\values\styles.xml and copypaste your style from there.
I can see in there something like
So you can define the same or similar style in your code. Generally,
data/resdirectory in android SDK contains many interesting resources.