jaisonDavis
jaisonDavis

Reputation: 1427

Setting a theme for an app

Can I set a theme for the app I create?

I am talking about themes like in...

http://developer.android.com/design/style/themes.html

or should I use Styles and themes, and individually modify every child?

Upvotes: 1

Views: 137

Answers (1)

Kazekage Gaara
Kazekage Gaara

Reputation: 15052

You indeed have to use Styles and Themes.

You can add a theme to whole of your application with just one line in the manifest:

<application android:theme="@style/CustomTheme">

Upvotes: 1

Related Questions