我想为Android创建libgdx动态壁纸项目,但是在我启动/编写一些代码后,在设置动态壁纸后,我在Android上使用Dark Theme遇到了问题-在主屏幕上出现了深色主题。
我的清单:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="LoL"> <activity android:name="com.mygdx.testlwp.MainActivity" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="com.mygdx.testlwp.AndroidLauncher" android:icon="@drawable/ic_launcher" android:label="LoL" android:permission="android.permission.BIND_WALLPAPER" android:screenOrientation="fullSensor"> <intent-filter> <action android:name="android.service.wallpaper.WallpaperService" /> </intent-filter> <meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" /> </service> </application>
链接到最小化项目:https://github.com/Javsons/testLWP
感谢您的帮助!
@编辑 如清单所示,我不使用任何自定义布局。