Datum: 19.02.2012
, Kategorie:
Android,
Apps
Unsere Bußgeldrechner-App startete unter Android 2.1 nicht. Leider gab es auch keine Fehlermeldung oder Exception in Logcat zu sehen. Stundenlanges herumprobieren hat dann folgendes zu Tage gebracht.
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/top"
android:tileMode="clamp"
android:dither="true"
/>
Die rot markierte Zeile war für das Abstürzen der App kurz nach dem Start verantwortlich. Der Wert clamp im Attribut tileMode zeichnet übrigens die Randfarbe in X- und Y-Richtung weiter. Mit folgendem Code ersetzt, funktioniert die App auch unter Android 2.1.
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/top"
android:tileMode="disabled"
android:gravity="top|left"
android:dither="true"
/>