values/styles.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:fitsSystemWindows">true</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:fitsSystemWindows">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
package="com.example.mingnote">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_chaozhuo_147456"
android:label="铭记"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".NoteEdit"
android:label="记事"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
现在我的界面主题是自己改的,用Daynight切换夜间主题后很难看。在网上找了自定义DayNight主题的方法,在values中自定义theme.xml,在values-night中自定义theme.xml,但没效果。如何解决?