From 628a00faa838a71188cc0f2a17635aeb87b4a427 Mon Sep 17 00:00:00 2001 From: Andrew Solovay Date: Thu, 19 Nov 2015 16:35:00 -0800 Subject: [PATCH] docs: Made javadoc references less ambiguous Paragraph had references to two different methods with the same name (but in different classes). Qualified the method names with the class names (Foo.doSomething(), Bar.doSomething() ) to make it clearer. See first comment for doc stage location. bug: 24979554 Change-Id: I0435aab48be1a9935fe2f4bc2ab448a333b0ae99 --- docs/html/about/versions/marshmallow/android-6.0.jd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/html/about/versions/marshmallow/android-6.0.jd b/docs/html/about/versions/marshmallow/android-6.0.jd index 5b2e089fc4d59..732932f76e6d3 100644 --- a/docs/html/about/versions/marshmallow/android-6.0.jd +++ b/docs/html/about/versions/marshmallow/android-6.0.jd @@ -406,12 +406,12 @@ mode, the UI continues to be rendered at the original resolution (such as 1080p)

Themeable ColorStateLists

Theme attributes are now supported in {@link android.content.res.ColorStateList} for devices running on Android 6.0 (API level 23). The -{@link android.content.res.Resources#getColorStateList(int) getColorStateList()} and -{@link android.content.res.Resources#getColor(int) getColor()} methods have been deprecated. If -you are calling these APIs, call the new -{@link android.content.Context#getColorStateList(int) getColorStateList()} or -{@link android.content.Context#getColor(int) getColor()} methods instead. These methods are also -available in the v4 appcompat library via {@link android.support.v4.content.ContextCompat}.

+{@link android.content.res.Resources#getColorStateList(int) Resources.getColorStateList()} and +{@link android.content.res.Resources#getColor(int) Resources.getColor()} methods have been +deprecated. If you are calling these APIs, call the new +{@link android.content.Context#getColorStateList(int) Context.getColorStateList()} or +{@link android.content.Context#getColor(int) Context.getColor()} methods instead. These methods are +also available in the v4 appcompat library via {@link android.support.v4.content.ContextCompat}.

Audio Features