Tweaking size of QSB and updating cling assets.

- Making the voice search button a little larger (Bug: 5373735)
- Updating landscape cling backgrounds

Change-Id: I9a9c0367cb0fce5a41fb45c48ea70d9ba8e13f69
This commit is contained in:
Winson Chung
2011-09-28 16:49:47 -07:00
parent c5d2a7b0d6
commit 5966da2e25
17 changed files with 26 additions and 25 deletions

View File

@@ -161,11 +161,14 @@ public class Cling extends FrameLayout {
// Draw the background
if (mBackground == null) {
if (mDrawIdentifier.equals(WORKSPACE_PORTRAIT)) {
if (mDrawIdentifier.equals(WORKSPACE_PORTRAIT) ||
mDrawIdentifier.equals(WORKSPACE_LANDSCAPE)) {
mBackground = getResources().getDrawable(R.drawable.bg_cling1);
} else if (mDrawIdentifier.equals(ALLAPPS_PORTRAIT)) {
} else if (mDrawIdentifier.equals(ALLAPPS_PORTRAIT) ||
mDrawIdentifier.equals(ALLAPPS_LANDSCAPE)) {
mBackground = getResources().getDrawable(R.drawable.bg_cling2);
} else if (mDrawIdentifier.equals(FOLDER_PORTRAIT)) {
} else if (mDrawIdentifier.equals(FOLDER_PORTRAIT) ||
mDrawIdentifier.equals(FOLDER_LANDSCAPE)) {
mBackground = getResources().getDrawable(R.drawable.bg_cling3);
}
}