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"
|
2013-12-31 10:54:54 +01:00
|
|
|
android:paddingBottom="4dp"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:orientation="horizontal" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2013-11-16 23:37:26 +01:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_marginRight="6dp"
|
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"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:orientation="vertical" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@id/title"
|
2013-12-31 10:54:54 +01:00
|
|
|
android:textSize="13sp" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2013-11-16 23:39:37 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:padding="3dp"
|
2013-12-31 10:54:54 +01:00
|
|
|
android:textSize="13sp" />
|
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>
|