TylerJPresley
TylerJPresley

Reputation: 489

How to use light theme for android in titanium

How can I change it so that android uses a light theme?

Upvotes: 2

Views: 1984

Answers (1)

flumpb
flumpb

Reputation: 1776

Build your project and then copy <app>/build/android/AndroidManifest.xml to <app>/platform/android/AndroidManifest.xml and add the theme in.

http://developer.android.com/guide/topics/ui/themes.html#ApplyATheme

Precisely:

<application android:theme="@android:style/Theme.Light">

Upvotes: 4

Related Questions