Reputation: 1427
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
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