Android Activity Background Image Android Activity Background Image android android

Android Activity Background Image


I also don't use themes, so in the layout of the activity I would add

android:background="@drawable/splash_image"


My solution was change the android:windowBackground to android:background.

<?xml version="1.0" encoding="UTF-8" ?><resources>  <style name="Theme.Splash" parent="android:Theme">    <item name="android:background">@drawable/splash</item>    <item name="android:windowNoTitle">true</item>  </style></resources>


I don't use themes or anything, so I'm not sure how that will affect this, but I set my background like this:

getWindow().setBackgroundDrawableResource(R.drawable.background_image);

in onCreate