换主题让我整个android工作室应用混乱
Change the theme of my whole android studio application confusion
我刚开始学习 android,我想更改整个 android 应用程序的主题。 Based on this
我想将主题更改为深色 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这个主题?如何解决?
将android:theme="@style/Theme.Material">
更改为:
android:theme="@android:style/Theme.Material">
我刚开始学习 android,我想更改整个 android 应用程序的主题。 Based on this
我想将主题更改为深色 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这个主题?如何解决?
将android:theme="@style/Theme.Material">
更改为:
android:theme="@android:style/Theme.Material">