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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-26 12:25:20 +02:00
|
|
|
android:paddingTop="3dp"
|
2011-03-09 16:11:23 +01:00
|
|
|
android:paddingBottom="4dp"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:paddingLeft="6dp"
|
2013-07-21 07:20:53 +10:00
|
|
|
android:paddingRight="10dp">
|
2011-03-07 17:47:17 +01:00
|
|
|
|
|
|
|
<ImageView android:id="@+id/icon"
|
2012-09-18 20:59:00 +01:00
|
|
|
android:scaleType="fitCenter"
|
2011-03-07 17:47:17 +01:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2013-10-11 16:38:56 +02:00
|
|
|
android:layout_marginRight="4dp"
|
2011-03-09 16:11:23 +01:00
|
|
|
android:padding="4dp"/>
|
2011-03-07 17:47:17 +01:00
|
|
|
|
2013-06-10 21:37:59 +10:00
|
|
|
<LinearLayout android:id="@+id/status_icons"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_alignParentTop="true"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_alignParentRight="true"
|
2013-06-10 21:37:59 +10:00
|
|
|
android:padding="4dp">
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/icon_status_has_updates"
|
|
|
|
android:layout_width="18dp"
|
|
|
|
android:layout_height="18dp"
|
2013-07-08 14:26:07 +02:00
|
|
|
android:visibility="gone"
|
2013-06-10 21:37:59 +10:00
|
|
|
android:gravity="end" />
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/icon_status_installed"
|
|
|
|
android:layout_width="18dp"
|
|
|
|
android:layout_height="18dp"
|
2013-07-08 14:26:07 +02:00
|
|
|
android:visibility="gone"
|
2013-06-10 21:37:59 +10:00
|
|
|
android:gravity="end" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-03-07 17:47:17 +01:00
|
|
|
<TextView android:id="@+id/name"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_toRightOf="@id/icon"
|
|
|
|
android:layout_toLeftOf="@id/status_icons"
|
2013-05-27 18:08:24 +02:00
|
|
|
android:paddingTop="4dp"
|
2013-07-09 23:33:05 +02:00
|
|
|
android:paddingBottom="2dp" />
|
2011-03-07 17:47:17 +01:00
|
|
|
|
|
|
|
<TextView android:id="@+id/license"
|
|
|
|
android:textSize="12sp"
|
2011-03-09 16:11:23 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2011-03-07 17:47:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"
|
2013-07-21 07:20:53 +10:00
|
|
|
android:layout_alignParentRight="true" />
|
2011-03-07 17:47:17 +01:00
|
|
|
|
2011-03-09 16:11:23 +01:00
|
|
|
<TextView android:id="@+id/status"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBaseline="@id/license"
|
2013-07-08 13:03:10 +02:00
|
|
|
android:layout_toLeftOf="@id/license"
|
2013-10-11 16:38:56 +02:00
|
|
|
android:layout_alignLeft="@id/name" />
|
2011-03-09 16:11:23 +01:00
|
|
|
|
2011-03-07 17:47:17 +01:00
|
|
|
<TextView android:id="@+id/summary"
|
2011-03-09 16:11:23 +01:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2011-03-07 17:47:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/icon"
|
2013-07-26 09:10:32 +10:00
|
|
|
android:paddingLeft="@dimen/applist_summary_padding" />
|
2011-03-07 17:47:17 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|