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"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:padding="5dp"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:baselineAligned="false" >
|
2011-03-07 17:47:17 +01:00
|
|
|
|
2013-12-26 00:08:43 +01:00
|
|
|
<!-- Actual icon size is dependent on preferences and set in
|
2013-11-17 22:09:04 +02:00
|
|
|
AppListAdapater.java:layoutIcon() -->
|
2013-12-26 00:08:43 +01:00
|
|
|
<ImageView android:id="@+id/icon"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="4dp"
|
2014-02-12 20:46:32 +01:00
|
|
|
android:scaleType="fitCenter" />
|
2011-03-07 17:47:17 +01:00
|
|
|
|
2014-02-12 20:23:19 +01:00
|
|
|
<RelativeLayout
|
2013-12-26 00:08:43 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:layout_toEndOf="@id/icon"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:baselineAligned="false" >
|
|
|
|
|
|
|
|
<TextView android:id="@+id/status"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="13sp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_marginStart="6sp"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:layout_alignParentTop="true"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentEnd="true" />
|
2013-06-10 21:37:59 +10:00
|
|
|
|
2013-12-26 00:08:43 +01:00
|
|
|
<TextView android:id="@+id/name"
|
2013-12-26 13:18:28 +01:00
|
|
|
android:textSize="17sp"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:textStyle="bold"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:paddingBottom="3sp"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_toStartOf="@id/status" />
|
2013-12-25 22:46:46 +01:00
|
|
|
|
2014-02-12 20:23:19 +01:00
|
|
|
<TextView android:id="@+id/license"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_marginStart="6sp"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:layout_below="@id/name"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentEnd="true" />
|
2014-02-12 20:23:19 +01:00
|
|
|
|
2013-12-26 00:08:43 +01:00
|
|
|
<TextView android:id="@+id/summary"
|
2014-02-12 20:23:19 +01:00
|
|
|
android:textSize="13sp"
|
2013-12-26 00:08:43 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-01 21:08:41 +01:00
|
|
|
android:layout_below="@id/name"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_toStartOf="@id/license" />
|
2013-11-17 22:09:04 +02:00
|
|
|
|
2013-12-26 00:08:43 +01:00
|
|
|
</RelativeLayout>
|
2011-03-09 16:11:23 +01:00
|
|
|
|
2011-03-07 17:47:17 +01:00
|
|
|
</RelativeLayout>
|