我刚刚开始学习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这个主题?如何解决?
答案 0 :(得分:1)
将android:theme="@style/Theme.Material">
更改为:
android:theme="@android:style/Theme.Material">