summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2013-09-12 02:53:22 +0200
committerMichael Jurka <mikejurka@google.com>2013-09-18 15:16:00 +0200
commit5664de2524be15329882bf81925d08b5de760b8c (patch)
tree8c3df8adb88f3f2450e1bf51c9ab81a5626658e9 /src
parent1697b79a86c8244cf2758eec93e0ba299bc107d0 (diff)
downloadandroid_packages_apps_Trebuchet-5664de2524be15329882bf81925d08b5de760b8c.tar.gz
android_packages_apps_Trebuchet-5664de2524be15329882bf81925d08b5de760b8c.tar.bz2
android_packages_apps_Trebuchet-5664de2524be15329882bf81925d08b5de760b8c.zip
Update assets for pressed/focused/selected states
Also, add shadow below/above wallpaper strip Bug: 10722070 Change-Id: I37c445bab90e103f414c95b62e101a73d060661f
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/WallpaperPickerActivity.java18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/com/android/launcher3/WallpaperPickerActivity.java b/src/com/android/launcher3/WallpaperPickerActivity.java
index d980967e6..824dea642 100644
--- a/src/com/android/launcher3/WallpaperPickerActivity.java
+++ b/src/com/android/launcher3/WallpaperPickerActivity.java
@@ -109,8 +109,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
mIgnoreNextTap = true;
}
mAnim = new LauncherViewPropertyAnimator(wallpaperStrip);
- mAnim.translationY(wallpaperStrip.getHeight())
- .setInterpolator(new DecelerateInterpolator(0.75f));
+ mAnim.translationY(wallpaperStrip.getHeight()).alpha(0f)
+ .setInterpolator(new DecelerateInterpolator(0.75f));
mAnim.start();
}
public void onTap() {
@@ -121,7 +121,8 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
mAnim.cancel();
}
mAnim = new LauncherViewPropertyAnimator(wallpaperStrip);
- mAnim.translationY(0).setInterpolator(new DecelerateInterpolator(0.75f));
+ mAnim.translationY(0).alpha(1f)
+ .setInterpolator(new DecelerateInterpolator(0.75f));
mAnim.start();
}
}
@@ -363,7 +364,16 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
cursor.close();
return thumb;
}
-
+
+ protected void onStop() {
+ super.onStop();
+ final View wallpaperStrip = findViewById(R.id.wallpaper_strip);
+ if (wallpaperStrip.getTranslationY() > 0) {
+ wallpaperStrip.setTranslationY(0);
+ wallpaperStrip.setAlpha(1f);
+ }
+ }
+
protected void onSaveInstanceState(Bundle outState) {
outState.putParcelableArrayList(TEMP_WALLPAPER_TILES, mTempWallpaperTiles);
}