Merge "Clean up some javadocs in Window.setFeature...()" into lmp-mr1-dev automerge: 253626b

automerge: b64176b

* commit 'b64176bd87e08bcb952d6c22eea7ffd9a8b6df62':
  Clean up some javadocs in Window.setFeature...()
This commit is contained in:
Alan Viverette
2014-10-28 00:32:19 +00:00
committed by android-build-merger

View File

@@ -1130,31 +1130,31 @@ public abstract class Window {
* Set an explicit Drawable value for feature of this window. You must * Set an explicit Drawable value for feature of this window. You must
* have called requestFeature(featureId) before calling this function. * have called requestFeature(featureId) before calling this function.
* *
* @param featureId The desired drawable feature to change. * @param featureId The desired drawable feature to change. Features are
* Features are constants defined by Window. * constants defined by Window.
* @param drawable A Drawable object to display. * @param drawable A Drawable object to display.
*/ */
public abstract void setFeatureDrawable(int featureId, Drawable drawable); public abstract void setFeatureDrawable(int featureId, Drawable drawable);
/** /**
* Set a custom alpha value for the given drawale feature, controlling how * Set a custom alpha value for the given drawable feature, controlling how
* much the background is visible through it. * much the background is visible through it.
* *
* @param featureId The desired drawable feature to change. * @param featureId The desired drawable feature to change. Features are
* Features are constants defined by Window. * constants defined by Window.
* @param alpha The alpha amount, 0 is completely transparent and 255 is * @param alpha The alpha amount, 0 is completely transparent and 255 is
* completely opaque. * completely opaque.
*/ */
public abstract void setFeatureDrawableAlpha(int featureId, int alpha); public abstract void setFeatureDrawableAlpha(int featureId, int alpha);
/** /**
* Set the integer value for a feature. The range of the value depends on * Set the integer value for a feature. The range of the value depends on
* the feature being set. For FEATURE_PROGRESSS, it should go from 0 to * the feature being set. For {@link #FEATURE_PROGRESS}, it should go from
* 10000. At 10000 the progress is complete and the indicator hidden. * 0 to 10000. At 10000 the progress is complete and the indicator hidden.
* *
* @param featureId The desired feature to change. * @param featureId The desired feature to change. Features are constants
* Features are constants defined by Window. * defined by Window.
* @param value The value for the feature. The interpretation of this * @param value The value for the feature. The interpretation of this
* value is feature-specific. * value is feature-specific.
*/ */
public abstract void setFeatureInt(int featureId, int value); public abstract void setFeatureInt(int featureId, int value);