diff options
| author | 2011-09-22 12:58:54 -0700 | |
|---|---|---|
| committer | 2011-09-22 12:58:54 -0700 | |
| commit | 9d0e37e27cc4e71088afb2cda927454bca14b939 (patch) | |
| tree | 9b114b910914abb6ef2a5e025727d3e0c50c4983 | |
| parent | e690f565fd1926885f2b12c2aee2dddc5ba99983 (diff) | |
Some new ICS target SDK changes.
Change-Id: I5a500a5faddadbcb98bf181ad413c6d9fd7e663e
| -rw-r--r-- | core/java/android/os/Build.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index 1d8ea123c72c..5faab3603986 100644 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -282,6 +282,10 @@ public class Build { * <p>Applications targeting this or a later release will get these * new changes in behavior:</p> * <ul> + * <li> For devices without a dedicated menu key, the software compatibility + * menu key will not be shown even on phones. By targeting Ice Cream Sandwich + * or later, your UI must always have its own menu UI affordance if needed, + * on both tablets and phones. The ActionBar will take care of this for you. * <li> 2d drawing hardware acceleration is now turned on by default. * You can use * {@link android.R.attr#hardwareAccelerated android:hardwareAccelerated} @@ -296,6 +300,12 @@ public class Build { * will not change character within the same platform version. Applications * that wish to blend in with the device should use a theme from the * {@link android.R.style#Theme_DeviceDefault} family. + * <li> Managed cursors can now throw an exception if you directly close + * the cursor yourself without stopping the management of it; previously failures + * would be silently ignored. + * <li> The fadingEdge attribute on views will be ignored (fading edges is no + * longer a standard part of the UI). A new requiresFadingEdge attribute allows + * applications to still force fading edges on for special cases. * </ul> */ public static final int ICE_CREAM_SANDWICH = 14; |