Bitmap zu groß, um in eine Textur hochgeladen zu werden

Ich habe im Zeichenverzeichnis eine Bilddatei mit der Größe 960x1440. Beim Start der App wird das Bild nicht als Hintergrund geladen und im Logcat sehe ich:

Bitmap zu groß zum Hochladen in eine Textur (2880x4320, max = 4096x4096)

Warum heißt es 2880x4320, wenn das Bild 960x1440 ist?

Die Bitmap wird über xml geladen:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"

    android:layout_centerHorizontal="true" 
    android:layout_centerVertical="true"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/launcher_bg"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin">

Antworten auf die Frage(2)

Ihre Antwort auf die Frage