honeycomb property
H.
Released publicly as Android 3.0 in February 2011.
Applications targeting this or a later release will get these new changes in behavior:
-
The default theme for applications is now dark holographic:
R.style.Theme_Holo
. -
On large screen devices that do not have a physical menu button, the soft (compatibility) menu is disabled.
-
The activity lifecycle has changed slightly as per
Activity
. -
An application will crash if it does not call through to the super implementation of its
Activity.onPause()
method. -
When an application requires a permission to access one of its components (activity, receiver, service, provider), this permission is no longer enforced when the application wants to access its own component. This means it can require a permission on a component that it does not itself hold and still access that component.
-
Context.getSharedPreferences()
will not automatically reload the preferences if they have changed on storage, unlessContext.MODE_MULTI_PROCESS
is used. -
ViewGroup.setMotionEventSplittingEnabled(boolean)
will default to true. -
WindowManager.LayoutParams.FLAG_SPLIT_TOUCH
is enabled by default on windows. -
PopupWindow.isSplitTouchEnabled()
will return true by default. -
GridView
andListView
will useView.setActivated
for selected items if they do not implementCheckable
. -
Scroller
will be constructed with "flywheel" behavior enabled by default.
Constant Value: 11 (0x0000000b)
Added in API level 11
Implementation
static int get honeycomb => Build_VERSION_CODES.HONEYCOMB;