diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/installed_app_details.xml | 39 | ||||
-rw-r--r-- | res/values/strings.xml | 4 |
2 files changed, 43 insertions, 0 deletions
diff --git a/res/layout/installed_app_details.xml b/res/layout/installed_app_details.xml index fff1975..0b68d47 100644 --- a/res/layout/installed_app_details.xml +++ b/res/layout/installed_app_details.xml @@ -132,6 +132,7 @@ android:maxLines="1" /> </LinearLayout> + <LinearLayout android:id="@+id/info_size" android:layout_width="match_parent" @@ -169,6 +170,44 @@ android:maxLines="1" /> </LinearLayout> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:baselineAligned="true" + android:paddingTop="-1dip"> + <TextView + android:id="@+id/external_size_prefix" + android:text="@string/external_size_label" + android:textAppearance="?android:attr/textAppearanceMedium" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:maxLines="1" + android:paddingTop="6dip" + android:paddingLeft="6dip"/> + <ImageView + android:id="@+id/info_size_dots" + android:src="@drawable/dotted_line_480px" + android:layout_width="0dip" + android:layout_weight="1" + android:layout_height="1px" + android:layout_gravity="bottom" + android:layout_marginLeft="1dip" + android:layout_marginRight="1dip" + android:layout_marginBottom="4dip" + android:scaleType="center" /> + <TextView + android:id="@+id/external_size_text" + android:textAppearance="?android:attr/textAppearanceMedium" + android:paddingTop="6dip" + android:paddingRight="6dip" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:maxLines="1" /> + + </LinearLayout> + <!-- Clear data and install location buttons --> <include layout="@layout/two_buttons_panel" diff --git a/res/values/strings.xml b/res/values/strings.xml index 4107951..a1d58bd 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1969,6 +1969,10 @@ <string name="application_size_label">Application</string> <!-- Manage applications, individual application info screen, label under Storage heading. The amount of sapce taken up by the app's data (for example, downloaded emails or something like that) --> <string name="data_size_label">Data</string> + <!-- Manage applications, individual application info screen, label under Storage heading. The amount of space taken up by the app's data on USB storage [CHARSIZE=40] --> + <string name="external_size_label" product="nosdcard">USB storage</string> + <!-- Manage applications, individual application info screen, label under Storage heading. The amount of space taken up by the app's data on the SD card [CHARSIZE=40] --> + <string name="external_size_label" product="default">SD card</string> <!-- Manage applications, individual application info screen, button label under Storage heading. Button to remove the application from the system. --> <string name="uninstall_text">Uninstall</string> <!-- [CHAR LIMIT=25] Manage applications, individual application info screen, button label under Storage heading. Button to disable an existing application. --> |