Alex Zaitsev
Alex Zaitsev

Reputation: 1781

android create custom theme

I want to extent default android AppTheme. What should I write here instead of android:Theme?

<style name="CustomTheme" parent="android:Theme">

Upvotes: 0

Views: 1303

Answers (1)

Sergi Juanola
Sergi Juanola

Reputation: 6647

The name of the Theme you want to use as parent, actually.

<style name="CustomTheme" parent="android:Theme.Light">
<style name="CustomTheme" parent="android:Theme.Black">
<style name="CustomTheme" parent="android:Theme.NoTitleBar">
<style name="CustomTheme" parent="android:Theme.Holo.Light">
<style name="CustomTheme" parent="android:Theme.Holo.Light.Dialog">

etc.

Use the name that appears when in Graphical Layout (in Eclipse): Check this menu

Also, and of course, Android reference is your best friend

Upvotes: 1

Related Questions