diff options
author | Adam Cohen <adamcohen@google.com> | 2012-07-24 22:34:36 -0700 |
---|---|---|
committer | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2012-11-19 21:23:04 +0000 |
commit | ec05469652d9f257f79e71720511cf0b60f4c829 (patch) | |
tree | 2956a0bef463a445c4d2d74c8a6b9f7ad8096140 | |
parent | be62d494e9e55093ba178df8a3b580339ee3ab7a (diff) | |
download | packages_apps_trebuchet-ec05469652d9f257f79e71720511cf0b60f4c829.zip packages_apps_trebuchet-ec05469652d9f257f79e71720511cf0b60f4c829.tar.gz packages_apps_trebuchet-ec05469652d9f257f79e71720511cf0b60f4c829.tar.bz2 |
Ensuring that restoreInstanceState is being called promptly for synchronously bound page
Change-Id: I0e71c29f553ad360ec42a6a0b2529d16cbddd437
-rw-r--r-- | AndroidManifest.xml | 2 | ||||
-rw-r--r-- | src/com/cyanogenmod/trebuchet/CellLayout.java | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 5760d79..1a1f6bd 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -135,7 +135,7 @@ <!-- New user initialization; set up initial wallpaper --> <receiver - android:name="com.android.launcher2.UserInitializeReceiver" + android:name="com.cyanogenmod.trebuchet.UserInitializeReceiver" android:exported="false"> <intent-filter> <action android:name="android.intent.action.USER_INITIALIZE" /> diff --git a/src/com/cyanogenmod/trebuchet/CellLayout.java b/src/com/cyanogenmod/trebuchet/CellLayout.java index 63e98ad..e0a485b 100644 --- a/src/com/cyanogenmod/trebuchet/CellLayout.java +++ b/src/com/cyanogenmod/trebuchet/CellLayout.java @@ -19,6 +19,7 @@ package com.cyanogenmod.trebuchet; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; +import android.animation.ObjectAnimator; import android.animation.TimeInterpolator; import android.animation.ValueAnimator; import android.animation.ValueAnimator.AnimatorUpdateListener; |