diff options
| author | Chet Haase <chet@google.com> | 2011-12-19 18:01:05 -0800 |
|---|---|---|
| committer | Chet Haase <chet@google.com> | 2011-12-20 07:57:23 -0800 |
| commit | 2d46fcc669ff5efe365e9be435ab9e5c5a304939 (patch) | |
| tree | dc6a6d01ec64cd1d652f4ec67173a064c8ea7657 /core/java/android/view/ViewGroup.java | |
| parent | 01583ef715641c8a3ce68269b091e75adbe9335a (diff) | |
| download | frameworks_base-2d46fcc669ff5efe365e9be435ab9e5c5a304939.zip frameworks_base-2d46fcc669ff5efe365e9be435ab9e5c5a304939.tar.gz frameworks_base-2d46fcc669ff5efe365e9be435ab9e5c5a304939.tar.bz2 | |
Minor small fixes to old Animation code and docs.
Change-Id: Ib8a1ba2d12e26cc42a2cec48312a5229bb6d4e8a
Diffstat (limited to 'core/java/android/view/ViewGroup.java')
| -rw-r--r-- | core/java/android/view/ViewGroup.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/java/android/view/ViewGroup.java b/core/java/android/view/ViewGroup.java index 0d34b90..09901ff 100644 --- a/core/java/android/view/ViewGroup.java +++ b/core/java/android/view/ViewGroup.java @@ -3056,8 +3056,14 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } /** - * {@inheritDoc} + * Sets <code>t</code> to be the static transformation of the child, if set, returning a + * boolean to indicate whether a static transform was set. The default implementation + * simply returns <code>false</code>; subclasses may override this method for different + * behavior. * + * @param child The child view whose static transform is being requested + * @param t The Transformation which will hold the result + * @return true if the transformation was set, false otherwise * @see #setStaticTransformationsEnabled(boolean) */ protected boolean getChildStaticTransformation(View child, Transformation t) { |
