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
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/header"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
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 19:30:26 +01:00
|
|
|
android:layout_height="fill_parent"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:padding="4dp"
|
2013-11-16 23:39:37 +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-01-01 21:08:41 +01:00
|
|
|
android:padding="6dp"
|
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"
|
|
|
|
android:layout_alignParentRight="true"
|
2014-02-12 19:10:47 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:layout_marginLeft="6sp"
|
|
|
|
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"
|
|
|
|
android:textSize="18sp"
|
|
|
|
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-01-01 21:08:41 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@id/license" />
|
|
|
|
|
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"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginLeft="6sp"
|
|
|
|
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-01-01 21:08:41 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
2014-02-12 19:30:26 +01:00
|
|
|
android:layout_toLeftOf="@id/categories"
|
|
|
|
android:layout_below="@id/title" />
|
|
|
|
|
|
|
|
|
2013-10-11 20:25:18 +02:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
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>
|