Установка windowBackground в AppTheme приводит к тому, что фон исчезает через 3-5 секунд и меняется на черный экран
У меня есть AppTheme
что я указываю здесь:
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowBackground">@drawable/wallpaper2</item>
</style>
а также я установил это в моем манифесте к моим различным Activities
,
Однако, когда приложение запускается, оно показывает фон, может быть, на секунду? - а затем быстро сбрасывает его на черный...
Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nanospark.cnc"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<application
android:name=".CustomIOIO"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ProfileCreateActivity"
android:label="@string/profilecreationpageheader" >
</activity>
<activity
android:name=".ContactCreateActivity"
android:label="@string/contactcreationpageheader">
</activity>
<activity
android:name=".EventCreateActivity"
android:label="@string/eventcreationpageheader">
</activity>
</application>
</manifest>