Listen-Item Layout

  • Hallo,
    ich bin so langsam am verzweifeln. Mein Vorhaben ist eigentlich ein relativ simples Listenlayout, das in der Form warsch. öfters vorkommt und ich habe auch ein ähnliches Beispiel aber es funktioniert einfach nicht.
    Der Aufbau des Listenitems befindet sich im Anhang.


    Prinzipiell habe ich das genau so auch hinbekommen. Im Layouteditor von Eclipse sieht es auch in verschiedenen Auflösungen richtig aus. Nur wenn ich ein deployment auf dem angeschlossenen Android Dev. mache (Wildfire) wird es falsch dargestellt. Die volle breite wird nicht eingenommen, die Zeilenhöhe ist viel zu groß und der Content wird auf 5px zusammengestaucht.


    Ich habe schon verschiedene UI-Konfigurationen probiert (dyn. und fixe breiten/höhen, wrap/fill, div. layout-container) aber nichts war erfolgreich.
    Die momentane XML sieht so aus:



    HTML
    <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:id="@+id/LinearLayout1"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:background="@drawable/listitem"    android:orientation="horizontal" >
        <TextView        android:id="@+id/orderName"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:layout_weight="1"        android:padding="20dp"        android:shadowColor="#000000"        android:shadowDx="1"        android:shadowDy="1"        android:shadowRadius="1"        android:text="Lorem ipsum dolor sit ammet"        android:textAppearance="?android:attr/textAppearanceMedium"        android:textColor="@color/button_lightgray" />
    
    
        <RelativeLayout        android:id="@+id/RelativeLayout1"        android:layout_width="100dp" android:layout_height="fill_parent">
            <ImageView            android:id="@+id/loadCheckMark"            android:layout_width="match_parent"            android:layout_height="match_parent"            android:layout_alignParentLeft="true"            android:layout_alignParentTop="true"            android:adjustViewBounds="false"            android:scaleType="fitXY"            android:src="@drawable/list_item_valid" />
            <TextView            android:id="@+id/loadTextMark"            android:layout_width="100dp"            android:layout_height="fill_parent"            android:gravity="center_vertical"            android:inputType="textMultiLine"            android:paddingBottom="5dp"            android:paddingLeft="23dp"            android:paddingRight="5dp"            android:paddingTop="5dp"            android:text="Ladung vollständig"            android:textColor="@color/button_white" />    </RelativeLayout>
    </LinearLayout>


    Hat mir jemand einen Tipp was ich falsch mache?

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!