diff options
author | Chet Haase <chet@google.com> | 2014-12-01 06:32:38 -0800 |
---|---|---|
committer | Chet Haase <chet@google.com> | 2015-01-15 07:21:54 -0800 |
commit | d430753cba09acb07af8b313286f247c78a41a32 (patch) | |
tree | 182d064255c2e8298ce7119daf99c1a7c6a78899 /core/java/android/util | |
parent | a55e3ed8bf726e61186d5bb2271c3eab597b44d9 (diff) | |
download | frameworks_base-d430753cba09acb07af8b313286f247c78a41a32.zip frameworks_base-d430753cba09acb07af8b313286f247c78a41a32.tar.gz frameworks_base-d430753cba09acb07af8b313286f247c78a41a32.tar.bz2 |
Add resource attributes for Keyframes and PropertyValuesHolders
Issue #17939329 Expose multi-property and multi-keyframe capabilities in animation resources
Change-Id: I14822ced47665fa6cde4996f74d3078da2ada38a
Diffstat (limited to 'core/java/android/util')
-rw-r--r-- | core/java/android/util/AttributeSet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/util/AttributeSet.java b/core/java/android/util/AttributeSet.java index 74942ba..eb8c168 100644 --- a/core/java/android/util/AttributeSet.java +++ b/core/java/android/util/AttributeSet.java @@ -39,7 +39,7 @@ package android.util; * is more useful in conjunction with compiled XML resources: * * <pre> - * XmlPullParser parser = resources.getXml(myResouce); + * XmlPullParser parser = resources.getXml(myResource); * AttributeSet attributes = Xml.asAttributeSet(parser);</pre> * * <p>The implementation returned here, unlike using |