diff --git a/res/layout/manage_applications.xml b/res/layout/manage_applications.xml index 2d6678a958f..95d48479ec5 100755 --- a/res/layout/manage_applications.xml +++ b/res/layout/manage_applications.xml @@ -60,7 +60,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" - android:layout_marginTop="-23dp" + android:layout_marginTop="-20dp" android:textAppearance="?android:attr/textAppearanceSmallInverse" android:textColor="#ccc" android:shadowColor="#000" diff --git a/res/layout/running_processes_view.xml b/res/layout/running_processes_view.xml index 2e62c487f0e..3558e92b233 100644 --- a/res/layout/running_processes_view.xml +++ b/res/layout/running_processes_view.xml @@ -60,7 +60,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="0" - android:layout_marginTop="-23dp" + android:layout_marginTop="-20dp" android:textAppearance="?android:attr/textAppearanceSmallInverse" android:textColor="#ccc" android:shadowColor="#000" diff --git a/src/com/android/settings/applications/ApplicationsState.java b/src/com/android/settings/applications/ApplicationsState.java index c08ae5a6502..814bbbfa151 100644 --- a/src/com/android/settings/applications/ApplicationsState.java +++ b/src/com/android/settings/applications/ApplicationsState.java @@ -585,7 +585,7 @@ public class ApplicationsState { private long getTotalSize(PackageStats ps) { if (ps != null) { - return ps.cacheSize+ps.codeSize+ps.dataSize; + return ps.codeSize+ps.dataSize; } return SIZE_INVALID; }