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"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-05-26 12:25:20 +02:00
|
|
|
android:paddingTop="5dp"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:orientation="vertical" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2012-09-17 21:46:32 +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
|
|
|
|
2012-09-17 21:46:32 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2012-09-18 20:59:00 +01:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:cropToPadding="true"
|
2012-09-18 20:59:00 +01:00
|
|
|
android:padding="4dp"
|
|
|
|
android:scaleType="fitCenter" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2012-09-17 21:46:32 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2012-09-17 21:46:32 +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
|
|
|
|
2012-09-17 21:46:32 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_alignParentRight="true"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:layout_below="@id/title"
|
|
|
|
android:textSize="12sp" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2012-09-17 21:46:32 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:layout_below="@id/title"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_toLeftOf="@id/license"
|
2012-09-17 21:46:32 +01:00
|
|
|
android:textSize="12sp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
2011-01-04 23:52:04 +00:00
|
|
|
|
2012-09-17 21:46:32 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2013-07-10 12:59:47 +02:00
|
|
|
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>
|