I'm trying to make an image to serve as my background in a ScrollView. The image appears at Android 2.3 running in a Galaxy 5 and a Galaxy SII lite, but it doesn't at 4.2.2 running in a Galaxy nexus and Asus nexus.
Funny thing is that any other image works but the one i want to use doesn't.
It's a PNG image with a 640x2844 dimension.
I am setting the background like this:
<LinearLayout
android:id="@+id/ll_flux"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/back_status_marca"
>
Tried with setBackgroundResource(R.drawable.back_status_marca)
inside my activity, but didn't work either.
Any idea how might I achieve my background? That is, not changing the image.