summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorTodd Volkert <tvolkert@google.com>2015-02-12 23:09:19 +0000
committerTodd Volkert <tvolkert@google.com>2015-02-12 23:09:19 +0000
commit455e0ea8f2cbfc05fe420f0ea82f4ead10fa41af (patch)
tree9ce3e03166e900417673544f11a363ad3be3c308 /core
parentd23391eafe9f46ff01d5dc936126a4d6ae1c53d3 (diff)
downloadframeworks_base-455e0ea8f2cbfc05fe420f0ea82f4ead10fa41af.zip
frameworks_base-455e0ea8f2cbfc05fe420f0ea82f4ead10fa41af.tar.gz
frameworks_base-455e0ea8f2cbfc05fe420f0ea82f4ead10fa41af.tar.bz2
Revert "Increase visibility of Transition.areValuesChanged() to protected to allow subclasses outside the android.transition package to override it."
This reverts commit d23391eafe9f46ff01d5dc936126a4d6ae1c53d3. Change-Id: Id7211a0fd08b9bc8ad092501de3c3efa57bf8264
Diffstat (limited to 'core')
-rw-r--r--core/java/android/transition/Transition.java12
-rw-r--r--core/java/android/transition/Visibility.java4
2 files changed, 3 insertions, 13 deletions
diff --git a/core/java/android/transition/Transition.java b/core/java/android/transition/Transition.java
index c942042..2705bcf 100644
--- a/core/java/android/transition/Transition.java
+++ b/core/java/android/transition/Transition.java
@@ -1762,17 +1762,7 @@ public abstract class Transition implements Cloneable {
runAnimators();
}
- /**
- * Returns whether transition values have changed between the start scene and the end scene
- * (thus determining whether animation is required). The default implementation compares the
- * property values returned from {@link #getTransitionProperties()}, or all property values if
- * {@code getTransitionProperties()} returns null. Subclasses may override this method to
- * provide logic more specific to their transition implementation.
- *
- * @param oldValues the first set of values, may be {@code null}
- * @param newValues the second set of values, may be {@code null}
- */
- protected boolean areValuesChanged(TransitionValues oldValues, TransitionValues newValues) {
+ boolean areValuesChanged(TransitionValues oldValues, TransitionValues newValues) {
boolean valuesChanged = false;
// if oldValues null, then transition didn't care to stash values,
// and won't get canceled
diff --git a/core/java/android/transition/Visibility.java b/core/java/android/transition/Visibility.java
index 26dca43..8779229 100644
--- a/core/java/android/transition/Visibility.java
+++ b/core/java/android/transition/Visibility.java
@@ -182,7 +182,7 @@ public abstract class Visibility extends Transition {
return visibility == View.VISIBLE && parent != null;
}
- private static VisibilityInfo getVisibilityChangeInfo(TransitionValues startValues,
+ private VisibilityInfo getVisibilityChangeInfo(TransitionValues startValues,
TransitionValues endValues) {
final VisibilityInfo visInfo = new VisibilityInfo();
visInfo.visibilityChange = false;
@@ -484,7 +484,7 @@ public abstract class Visibility extends Transition {
}
@Override
- protected boolean areValuesChanged(TransitionValues oldValues, TransitionValues newValues) {
+ boolean areValuesChanged(TransitionValues oldValues, TransitionValues newValues) {
if (oldValues == null && newValues == null) {
return false;
}