Bin Chen
Bin Chen

Reputation: 63309

Android: download theme?

Currently my android has black background and white foreground(text color), I want to change it to some other theme, is there any market available that I can download theme xml files that can be used in my app?

Upvotes: 0

Views: 578

Answers (1)

FoamyGuy
FoamyGuy

Reputation: 46856

You don't have to download the light theme in order to use it. It comes with the system. You just need to indicate in your manifest that you'd like your activity to be shown with the light theme. Here is an example:

    <activity android:name="NoteEditor"
        android:theme="@android:style/Theme.Light"
    >

Upvotes: 1

Related Questions