ref:http://developer.android.com/reference/android/app/Activity.html#requestWindowFeature(int)
public final boolean requestWindowFeature(int featureId)
Since: API Level 1
Enable extended window features. This is a convenience for calling getWindow().requestFeature()
.
Parameters
featureId | The desired feature as defined in Window . |
---|
Returns
- Returns true if the requested feature is supported and now enabled.
Constants int DEFAULT_FEATURES The default features enabled int FEATURE_ACTION_BAR Flag for enabling the Action Bar. int FEATURE_ACTION_BAR_OVERLAY Flag for requesting an Action Bar that overlays window content. int FEATURE_ACTION_MODE_OVERLAY Flag for specifying the behavior of action modes when an Action Bar is not present. int FEATURE_CONTEXT_MENU Flag for the context menu. int FEATURE_CUSTOM_TITLE Flag for custom title. int FEATURE_INDETERMINATE_PROGRESS Flag for indeterminate progress int FEATURE_LEFT_ICON Flag for having an icon on the left side of the title bar int FEATURE_NO_TITLE Flag for the "no title" feature, turning off the title at the top of the screen. int FEATURE_OPTIONS_PANEL Flag for the "options panel" feature. int FEATURE_PROGRESS Flag for the progress indicator feature int FEATURE_RIGHT_ICON Flag for having an icon on the right side of the title bar int ID_ANDROID_CONTENT The ID that the main layout in the XML layout file should have. int PROGRESS_END Ending value for the (primary) progress int PROGRESS_INDETERMINATE_OFF Flag for setting the progress bar's indeterminate mode off int PROGRESS_INDETERMINATE_ON Flag for setting the progress bar's indeterminate mode on int PROGRESS_SECONDARY_END Highest possible value for the secondary progress int PROGRESS_SECONDARY_START Lowest possible value for the secondary progress int PROGRESS_START Starting value for the (primary) progress int PROGRESS_VISIBILITY_OFF Flag for setting the progress bar's visibility to GONE int PROGRESS_VISIBILITY_ON Flag for setting the progress bar's visibility to VISIBLE