summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2013-05-06 15:39:11 +0200
committerMichael Jurka <mikejurka@google.com>2013-05-06 16:38:38 +0200
commit496fefb40d403101d0bf1d35ab77a4ae2e85843c (patch)
tree72a109f34990f4195a1753e0041d385ca8bf10a8
parent5c68e5f0c70c92a820372b4193f91880b8906570 (diff)
downloadandroid_packages_apps_Trebuchet-496fefb40d403101d0bf1d35ab77a4ae2e85843c.tar.gz
android_packages_apps_Trebuchet-496fefb40d403101d0bf1d35ab77a4ae2e85843c.tar.bz2
android_packages_apps_Trebuchet-496fefb40d403101d0bf1d35ab77a4ae2e85843c.zip
Get rid of duplicate backgrounds
Bug: 8809491
-rw-r--r--res/layout-port/launcher.xml6
-rw-r--r--res/layout-sw720dp/launcher.xml6
-rw-r--r--src/com/android/launcher2/Launcher.java4
3 files changed, 3 insertions, 13 deletions
diff --git a/res/layout-port/launcher.xml b/res/layout-port/launcher.xml
index 4b4580710..346d29b5a 100644
--- a/res/layout-port/launcher.xml
+++ b/res/layout-port/launcher.xml
@@ -25,11 +25,7 @@
android:background="@drawable/workspace_bg">
<com.android.launcher2.DragLayer
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
-
android:id="@+id/drag_layer"
- android:background="@drawable/workspace_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
@@ -116,4 +112,4 @@
android:layout_height="match_parent"
android:visibility="invisible" />
</com.android.launcher2.DragLayer>
-</FrameLayout> \ No newline at end of file
+</FrameLayout>
diff --git a/res/layout-sw720dp/launcher.xml b/res/layout-sw720dp/launcher.xml
index 1fc53222f..2bacf362d 100644
--- a/res/layout-sw720dp/launcher.xml
+++ b/res/layout-sw720dp/launcher.xml
@@ -25,11 +25,7 @@
android:background="@drawable/workspace_bg">
<com.android.launcher2.DragLayer
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
-
android:id="@+id/drag_layer"
- android:background="@drawable/workspace_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
@@ -117,4 +113,4 @@
android:layout_height="match_parent"
android:visibility="invisible" />
</com.android.launcher2.DragLayer>
-</FrameLayout> \ No newline at end of file
+</FrameLayout>
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index 0aab2acaf..7437eacff 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -288,7 +288,6 @@ public final class Launcher extends Activity
private static Drawable.ConstantState[] sAppMarketIcon = new Drawable.ConstantState[2];
private Drawable mWorkspaceBackgroundDrawable;
- private Drawable mBlackBackgroundDrawable;
private final ArrayList<Integer> mSynchronouslyBoundPages = new ArrayList<Integer>();
@@ -959,7 +958,6 @@ public final class Launcher extends Activity
mLauncherView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
mWorkspaceBackgroundDrawable = getResources().getDrawable(R.drawable.workspace_bg);
- mBlackBackgroundDrawable = new ColorDrawable(Color.BLACK);
// Setup the drag layer
mDragLayer.setup(this, dragController);
@@ -2433,7 +2431,7 @@ public final class Launcher extends Activity
private void setWorkspaceBackground(boolean workspace) {
mLauncherView.setBackground(workspace ?
- mWorkspaceBackgroundDrawable : mBlackBackgroundDrawable);
+ mWorkspaceBackgroundDrawable : null);
}
void updateWallpaperVisibility(boolean visible) {