aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJorge Ruesga <jorge@ruesga.com>2013-01-06 19:52:53 +0100
committerMarco Brohet <therbom@gmail.com>2013-01-07 12:19:59 +0100
commitfb04a549891fad8d0f46bc2d26ba6bbf160002a3 (patch)
tree8002f62acf218e00dfe33667637a8d41132e23ea /res/layout
parentb38385b50b3a1323716b81502c08380f77ef8607 (diff)
downloadandroid_packages_apps_CMFileManager-fb04a549891fad8d0f46bc2d26ba6bbf160002a3.tar.gz
android_packages_apps_CMFileManager-fb04a549891fad8d0f46bc2d26ba6bbf160002a3.tar.bz2
android_packages_apps_CMFileManager-fb04a549891fad8d0f46bc2d26ba6bbf160002a3.zip
CMFM: Display new fso datetimes props
Add to FsoPropertiesDialog the new fso datetimes properties: - Last accessed - Last modified - Last changed Remove old fso_properties_dialog_date string from translations. Change-Id: I881658ae0fbc6c935995ffb4ad7a02172d06bb2c Signed-off-by: jruesga <jorge@ruesga.com>
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/fso_properties_dialog.xml58
1 files changed, 54 insertions, 4 deletions
diff --git a/res/layout/fso_properties_dialog.xml b/res/layout/fso_properties_dialog.xml
index 7c4886bd..45c38450 100644
--- a/res/layout/fso_properties_dialog.xml
+++ b/res/layout/fso_properties_dialog.xml
@@ -264,22 +264,72 @@
android:textAppearance="@style/secondary_text_appearance" />
</TableRow>
- <!-- Date -->
+ <!-- Last Accessed Time -->
<TableRow
android:layout_marginLeft="@dimen/extra_large_margin"
android:layout_marginRight="@dimen/extra_large_margin" >
<TextView
- android:id="@+id/fso_properties_date_label"
+ android:id="@+id/fso_properties_last_accessed_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/default_margin"
android:gravity="left|center_vertical"
- android:text="@string/fso_properties_dialog_date"
+ android:text="@string/fso_properties_dialog_last_accessed_date"
android:textAppearance="@style/primary_text_appearance" />
<TextView
- android:id="@+id/fso_properties_date"
+ android:id="@+id/fso_properties_last_accessed"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="@dimen/default_margin"
+ android:paddingRight="@dimen/double_margin"
+ android:gravity="left|center_vertical"
+ android:singleLine="false"
+ android:textAppearance="@style/secondary_text_appearance" />
+ </TableRow>
+
+ <!-- Last Modified Time -->
+ <TableRow
+ android:layout_marginLeft="@dimen/extra_large_margin"
+ android:layout_marginRight="@dimen/extra_large_margin" >
+
+ <TextView
+ android:id="@+id/fso_properties_last_modified_label"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="@dimen/default_margin"
+ android:gravity="left|center_vertical"
+ android:text="@string/fso_properties_dialog_last_modified_date"
+ android:textAppearance="@style/primary_text_appearance" />
+
+ <TextView
+ android:id="@+id/fso_properties_last_modified"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="@dimen/default_margin"
+ android:paddingRight="@dimen/double_margin"
+ android:gravity="left|center_vertical"
+ android:singleLine="false"
+ android:textAppearance="@style/secondary_text_appearance" />
+ </TableRow>
+
+ <!-- Last Changed Time -->
+ <TableRow
+ android:layout_marginLeft="@dimen/extra_large_margin"
+ android:layout_marginRight="@dimen/extra_large_margin" >
+
+ <TextView
+ android:id="@+id/fso_properties_last_changed_label"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="@dimen/default_margin"
+ android:gravity="left|center_vertical"
+ android:text="@string/fso_properties_dialog_last_changed_date"
+ android:textAppearance="@style/primary_text_appearance" />
+
+ <TextView
+ android:id="@+id/fso_properties_last_changed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/default_margin"