am 69717ccd: DO NOT MERGE. Some stuff that is Not Ready.
Merge commit '69717ccd13bb5568b912701ab39d603cfa7091cc' into gingerbread-plus-aosp * commit '69717ccd13bb5568b912701ab39d603cfa7091cc': DO NOT MERGE. Some stuff that is Not Ready.
This commit is contained in:
@@ -46516,17 +46516,6 @@
|
|||||||
visibility="public"
|
visibility="public"
|
||||||
>
|
>
|
||||||
</field>
|
</field>
|
||||||
<field name="FLAG_SUPPORTS_XLARGE_SCREENS"
|
|
||||||
type="int"
|
|
||||||
transient="false"
|
|
||||||
volatile="false"
|
|
||||||
value="524288"
|
|
||||||
static="true"
|
|
||||||
final="true"
|
|
||||||
deprecated="not deprecated"
|
|
||||||
visibility="public"
|
|
||||||
>
|
|
||||||
</field>
|
|
||||||
<field name="FLAG_SYSTEM"
|
<field name="FLAG_SYSTEM"
|
||||||
type="int"
|
type="int"
|
||||||
transient="false"
|
transient="false"
|
||||||
@@ -51719,17 +51708,6 @@
|
|||||||
visibility="public"
|
visibility="public"
|
||||||
>
|
>
|
||||||
</field>
|
</field>
|
||||||
<field name="SCREENLAYOUT_SIZE_XLARGE"
|
|
||||||
type="int"
|
|
||||||
transient="false"
|
|
||||||
volatile="false"
|
|
||||||
value="4"
|
|
||||||
static="true"
|
|
||||||
final="true"
|
|
||||||
deprecated="not deprecated"
|
|
||||||
visibility="public"
|
|
||||||
>
|
|
||||||
</field>
|
|
||||||
<field name="TOUCHSCREEN_FINGER"
|
<field name="TOUCHSCREEN_FINGER"
|
||||||
type="int"
|
type="int"
|
||||||
transient="false"
|
transient="false"
|
||||||
|
|||||||
@@ -269,6 +269,7 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable {
|
|||||||
* increased in size for extra large screens. Corresponds to
|
* increased in size for extra large screens. Corresponds to
|
||||||
* {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
|
* {@link android.R.styleable#AndroidManifestSupportsScreens_xlargeScreens
|
||||||
* android:xlargeScreens}.
|
* android:xlargeScreens}.
|
||||||
|
* @hide
|
||||||
*/
|
*/
|
||||||
public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
|
public static final int FLAG_SUPPORTS_XLARGE_SCREENS = 1<<19;
|
||||||
|
|
||||||
@@ -311,7 +312,7 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable {
|
|||||||
* {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
|
* {@link #FLAG_ALLOW_CLEAR_USER_DATA}, {@link #FLAG_UPDATED_SYSTEM_APP},
|
||||||
* {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
|
* {@link #FLAG_TEST_ONLY}, {@link #FLAG_SUPPORTS_SMALL_SCREENS},
|
||||||
* {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
|
* {@link #FLAG_SUPPORTS_NORMAL_SCREENS},
|
||||||
* {@link #FLAG_SUPPORTS_LARGE_SCREENS}, {@link #FLAG_SUPPORTS_XLARGE_SCREENS},
|
* {@link #FLAG_SUPPORTS_LARGE_SCREENS},
|
||||||
* {@link #FLAG_RESIZEABLE_FOR_SCREENS},
|
* {@link #FLAG_RESIZEABLE_FOR_SCREENS},
|
||||||
* {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE}
|
* {@link #FLAG_SUPPORTS_SCREEN_DENSITIES}, {@link #FLAG_VM_SAFE_MODE}
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ public final class Configuration implements Parcelable, Comparable<Configuration
|
|||||||
public static final int SCREENLAYOUT_SIZE_SMALL = 0x01;
|
public static final int SCREENLAYOUT_SIZE_SMALL = 0x01;
|
||||||
public static final int SCREENLAYOUT_SIZE_NORMAL = 0x02;
|
public static final int SCREENLAYOUT_SIZE_NORMAL = 0x02;
|
||||||
public static final int SCREENLAYOUT_SIZE_LARGE = 0x03;
|
public static final int SCREENLAYOUT_SIZE_LARGE = 0x03;
|
||||||
|
/** @hide */
|
||||||
public static final int SCREENLAYOUT_SIZE_XLARGE = 0x04;
|
public static final int SCREENLAYOUT_SIZE_XLARGE = 0x04;
|
||||||
|
|
||||||
public static final int SCREENLAYOUT_LONG_MASK = 0x30;
|
public static final int SCREENLAYOUT_LONG_MASK = 0x30;
|
||||||
@@ -83,7 +84,7 @@ public final class Configuration implements Parcelable, Comparable<Configuration
|
|||||||
* <p>The {@link #SCREENLAYOUT_SIZE_MASK} bits define the overall size
|
* <p>The {@link #SCREENLAYOUT_SIZE_MASK} bits define the overall size
|
||||||
* of the screen. They may be one of
|
* of the screen. They may be one of
|
||||||
* {@link #SCREENLAYOUT_SIZE_SMALL}, {@link #SCREENLAYOUT_SIZE_NORMAL},
|
* {@link #SCREENLAYOUT_SIZE_SMALL}, {@link #SCREENLAYOUT_SIZE_NORMAL},
|
||||||
* {@link #SCREENLAYOUT_SIZE_LARGE}, or {@link #SCREENLAYOUT_SIZE_XLARGE}.
|
* {@link #SCREENLAYOUT_SIZE_LARGE}.
|
||||||
*
|
*
|
||||||
* <p>The {@link #SCREENLAYOUT_LONG_MASK} defines whether the screen
|
* <p>The {@link #SCREENLAYOUT_LONG_MASK} defines whether the screen
|
||||||
* is wider/taller than normal. They may be one of
|
* is wider/taller than normal. They may be one of
|
||||||
|
|||||||
Reference in New Issue
Block a user