2010-10-19 23:24:04 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-03-07 17:47:17 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="0dp"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="10dp">
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/icon"
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:padding="5dp"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/name"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toRightOf="@id/icon"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/status"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toRightOf="@id/icon"
|
|
|
|
android:layout_below="@id/name"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/license"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"
|
|
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/summary"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/icon"
|
|
|
|
android:paddingLeft="5dp"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|