|
@@ -19,7 +19,7 @@
|
|
|
-->
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="56dp"
|
|
|
+ android:layout_height="72dp"
|
|
|
android:background="@drawable/list_selector"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:layout_height="72dp"
|
|
|
android:layout_weight="1"
|
|
|
android:gravity="center_vertical"
|
|
|
android:orientation="vertical">
|
|
@@ -43,7 +43,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center_vertical"
|
|
|
- android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginLeft="0dp"
|
|
|
android:layout_marginRight="4dp"
|
|
|
android:ellipsize="middle"
|
|
|
android:singleLine="true"
|
|
@@ -51,15 +51,40 @@
|
|
|
android:textColor="@color/textColor"
|
|
|
android:textSize="16dip" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/last_mod"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginLeft="0dp"
|
|
|
android:layout_marginRight="4dp"
|
|
|
- android:text="TextView"
|
|
|
- android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
- android:textSize="12dip" />
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/file_size"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Size MB"
|
|
|
+ android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
+ android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/file_separator"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text=", "
|
|
|
+ android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
+ android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/last_mod"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="Mod Date"
|
|
|
+ android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
+ android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|