改变我整个android studio应用程序混乱的主题

时间:2016-02-06 20:00:24

标签: java android android-studio android-manifest android-theme

我刚刚开始学习android,我想改变整个android应用程序的主题。 Based on this

我想将主题更改为Dark Material主题。在我的androidmanifest.xml文件中

<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

但是我的应用程序无法识别Theme.Material这个主题?如何解决?

1 个答案:

答案 0 :(得分:1)

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

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