diff options
author | Scott Main <smain@google.com> | 2010-01-26 15:34:02 -0800 |
---|---|---|
committer | Scott Main <smain@google.com> | 2010-01-26 15:37:01 -0800 |
commit | 34c09b53fde67e5d97875cdf3c99d2cec3b79fad (patch) | |
tree | c1b6455bbb93d00502f4a33b58dcfb043387bb2f /core/res | |
parent | 4459295998f954ed994bc22a2f1e1022f57b3693 (diff) | |
download | frameworks_base-34c09b53fde67e5d97875cdf3c99d2cec3b79fad.zip frameworks_base-34c09b53fde67e5d97875cdf3c99d2cec3b79fad.tar.gz frameworks_base-34c09b53fde67e5d97875cdf3c99d2cec3b79fad.tar.bz2 |
remove @deprecated from dropDownHeight and dropDownWidth
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/values/attrs.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index d688b7c..794a9f0 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -2122,7 +2122,7 @@ to match the width of the screen, or wrap_content to match the width of the anchored view. --> <attr name="dropDownWidth" format="dimension"> - <!-- {@deprecated Use match_parent instead.} --> + <!-- <strong>Deprecated.</strong> Use {@code match_parent} instead. --> <enum name="fill_parent" value="-1" /> <!-- The dropdown should fit the width of the screen. --> <enum name="match_parent" value="-1" /> @@ -2134,7 +2134,7 @@ to fill the width of the screen, or wrap_content to match the height of the content of the drop down. --> <attr name="dropDownHeight" format="dimension"> - <!-- {@deprecated Use match_parent instead.} --> + <!-- <strong>Deprecated.</strong> Use {@code match_parent} instead. --> <enum name="fill_parent" value="-1" /> <!-- The dropdown should fill the width of the screen. --> <enum name="match_parent" value="-1" /> |