KKKK
KKKK

Reputation: 347

Change the theme of my whole android studio application confusion

I just starting learning android and I want to change the theme of my whole android application. Based on this

I want to change the theme to the Dark Material theme. In my androidmanifest.xml file

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/Theme.Material"> // here is the change

But my application cannot recognize the Theme.Material this theme? How to fix it?

Upvotes: 1

Views: 380

Answers (1)

Pooya
Pooya

Reputation: 6136

change android:theme="@style/Theme.Material"> to:

android:theme="@android:style/Theme.Material">

Upvotes: 1

Related Questions