Android Libgdx项目将android主题更改为深色

时间:2019-12-18 00:16:39

标签: android libgdx

我想为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

感谢您的帮助!

@编辑 如清单所示,我不使用任何自定义布局。

0 个答案:

没有答案