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:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2013-09-27 18:04:01 +02:00
|
|
|
android:baselineAligned="false"
|
2013-10-23 18:14:41 +02:00
|
|
|
android:padding="5dp" >
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2011-03-07 17:47:17 +01:00
|
|
|
<TextView android:id="@+id/version"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textStyle="bold"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp" />
|
2011-02-21 22:12:00 +00:00
|
|
|
|
2011-03-30 01:39:36 +02:00
|
|
|
<TextView android:id="@+id/status"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_below="@id/version"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
2012-07-16 15:05:42 -04:00
|
|
|
<TextView android:id="@+id/added"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_below="@id/status"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content" />
|
2013-10-11 18:20:23 +02:00
|
|
|
|
|
|
|
<TextView android:id="@+id/buildtype"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-11 18:20:23 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginBottom="4sp" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/size"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_below="@id/buildtype"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2013-10-11 18:20:23 +02:00
|
|
|
android:layout_marginBottom="4sp" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/nativecode"
|
2013-11-16 23:39:37 +01:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_below="@id/size"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content" />
|
2012-07-16 15:05:42 -04:00
|
|
|
|
2011-03-07 17:47:17 +01:00
|
|
|
</RelativeLayout>
|