Merge "Add example to TypedValue.changingConfigurations JavaDoc" into oc-dev

am: 4124851b64

Change-Id: I2bdfbdbe4e08e4b10b0fe7a2d0ed813f29d72fe7
This commit is contained in:
Adam Lesinski
2017-04-13 21:03:53 +00:00
committed by android-build-merger

View File

@@ -187,6 +187,27 @@ public class TypedValue {
/**
* If the value came from a resource, these are the configurations for
* which its contents can change.
*
* <p>For example, if a resource has a value defined for the -land resource qualifier,
* this field will have the {@link android.content.pm.ActivityInfo#CONFIG_ORIENTATION} bit set.
* </p>
*
* @see android.content.pm.ActivityInfo#CONFIG_MCC
* @see android.content.pm.ActivityInfo#CONFIG_MNC
* @see android.content.pm.ActivityInfo#CONFIG_LOCALE
* @see android.content.pm.ActivityInfo#CONFIG_TOUCHSCREEN
* @see android.content.pm.ActivityInfo#CONFIG_KEYBOARD
* @see android.content.pm.ActivityInfo#CONFIG_KEYBOARD_HIDDEN
* @see android.content.pm.ActivityInfo#CONFIG_NAVIGATION
* @see android.content.pm.ActivityInfo#CONFIG_ORIENTATION
* @see android.content.pm.ActivityInfo#CONFIG_SCREEN_LAYOUT
* @see android.content.pm.ActivityInfo#CONFIG_UI_MODE
* @see android.content.pm.ActivityInfo#CONFIG_SCREEN_SIZE
* @see android.content.pm.ActivityInfo#CONFIG_SMALLEST_SCREEN_SIZE
* @see android.content.pm.ActivityInfo#CONFIG_DENSITY
* @see android.content.pm.ActivityInfo#CONFIG_LAYOUT_DIRECTION
* @see android.content.pm.ActivityInfo#CONFIG_COLOR_MODE
*
*/
public @Config int changingConfigurations = -1;