2010-10-19 23:24:04 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:padding="5dp"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:baselineAligned="false"
|
|
|
|
android:orientation="vertical" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2014-02-12 20:15:43 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:orientation="vertical"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-12 20:15:43 +01:00
|
|
|
android:baselineAligned="false" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:layout_width="56dp"
|
2014-02-12 20:15:43 +01:00
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_centerVertical="true"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:padding="4dp"
|
2014-03-10 17:56:38 +01:00
|
|
|
android:scaleType="fitCenter" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-12 20:15:43 +01:00
|
|
|
android:layout_centerVertical="true"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_toRightOf="@id/icon"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_toEndOf="@id/icon"
|
2014-02-12 20:15:43 +01:00
|
|
|
android:padding="5dp"
|
|
|
|
android:baselineAligned="false"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:orientation="vertical" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<TextView
|
2014-01-01 21:08:41 +01:00
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="wrap_content"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:layout_alignParentTop="true"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_alignParentRight="true"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentEnd="true"
|
2014-02-12 19:10:47 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_marginLeft="6sp"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_marginStart="6sp"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:textSize="12sp" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<TextView
|
2014-01-01 21:08:41 +01:00
|
|
|
android:id="@+id/title"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:textSize="17sp"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentStart="true"
|
2014-02-21 00:32:17 +01:00
|
|
|
android:textAlignment="viewStart"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_toLeftOf="@id/license"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_toStartOf="@id/license" />
|
2014-01-01 21:08:41 +01:00
|
|
|
|
2014-02-12 19:30:26 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/categories"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_alignParentRight="true"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentEnd="true"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_marginLeft="6sp"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_marginStart="6sp"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:layout_below="@id/title"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
2014-01-01 21:08:41 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-12 19:10:47 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:textSize="12sp"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentStart="true"
|
2014-02-21 00:32:17 +01:00
|
|
|
android:textAlignment="viewStart"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:layout_toLeftOf="@id/categories"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_toStartOf="@id/categories"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:layout_below="@id/title" />
|
|
|
|
|
|
|
|
|
2013-10-11 20:25:18 +02:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
</RelativeLayout>
|
2014-02-12 20:15:43 +01:00
|
|
|
</RelativeLayout>
|
2011-01-04 23:52:04 +00:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:scrollbars="none" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-05-26 12:25:20 +02:00
|
|
|
</LinearLayout>
|