Android Extension: WindowTitle

I want to expand android:WindowTitle

But it parent="android:WindowTitle"no longer works in the new SDKs. This is a private style.

What is a good replacement for parent="android:WindowTitle"?

I get lost reading this thread .

Any alternative ways to use <style name="CustomWindowTitle" parent="android:WindowTitle">with machine-independent hot fixes so that my code compiles for the rest of the command?

+5
source share
1 answer

You can open the android-sdk-windows \ platform \ android-6 \ data \ res \ values ​​\ styles.xml files and copy your style.

I see something like there

<style name="WindowTitle">
        <item name="android:singleLine">true</item>
        <item name="android:textAppearance">@style/TextAppearance.WindowTitle</item>
        <item name="android:shadowColor">#BB000000</item>
        <item name="android:shadowRadius">2.75</item>
</style>

, . , data/res SDK Android .

+5

All Articles