61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/list_row_selector"
|
|
android:padding="8dp" >
|
|
|
|
<!-- Thumbnail Image -->
|
|
<ImageView
|
|
android:id="@+id/thumbnail"
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginRight="8dp"/>
|
|
|
|
|
|
<!-- Title -->
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignTop="@+id/thumbnail"
|
|
android:layout_toRightOf="@+id/thumbnail"
|
|
android:textSize="@dimen/zitatlist"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
<!-- Beschreibung -->
|
|
<TextView
|
|
android:id="@+id/beschreibung"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/title"
|
|
android:layout_marginTop="1dip"
|
|
android:layout_toRightOf="@+id/thumbnail"
|
|
android:textSize="@dimen/rating" />
|
|
|
|
<!-- ObjetcID -->
|
|
<TextView
|
|
android:id="@+id/objectid"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/beschreibung"
|
|
android:layout_marginTop="1dip"
|
|
android:layout_toRightOf="@+id/thumbnail"
|
|
android:visibility = "gone"
|
|
android:textSize="@dimen/rating" />
|
|
|
|
<!-- Anzahl -->
|
|
<TextView
|
|
android:id="@+id/anzahl"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/objectid"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_toRightOf="@+id/thumbnail"
|
|
android:textColor="@color/genre"
|
|
android:textSize="@dimen/genre" />
|
|
|
|
|
|
</RelativeLayout> |