2014-06-03 15:42:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2014-06-09 17:49:54 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_alignParentLeft="true"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_toLeftOf="@+id/status"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_toStartOf="@+id/status"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:lines="1"
|
|
|
|
android:ellipsize="end" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_alignParentRight="true"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_alignBottom="@+id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download_title"
|
|
|
|
android:text="@string/download_title_colon"
|
|
|
|
android:layout_below="@id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/download"
|
|
|
|
android:layout_alignBaseline="@id/download_title"
|
|
|
|
android:layout_toRightOf="@id/download_title"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_toEndOf="@id/download_title"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/upload_title"
|
|
|
|
android:text="@string/upload_title_colon"
|
|
|
|
android:layout_below="@id/download_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/upload"
|
|
|
|
android:layout_alignBaseline="@id/upload_title"
|
|
|
|
android:layout_toRightOf="@id/upload_title"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_toEndOf="@id/upload_title"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2014-06-09 17:49:54 +00:00
|
|
|
|
2014-06-30 17:05:30 +00:00
|
|
|
</RelativeLayout>
|