@Retention(value=CLASS) @Target(value=TYPE) public @interface WindowFeature
Should be used on EActivity
classes to set custom window features.
The annotation value should be one or several of Window
constants.
Note: This should replace NoTitle
annotation.
Example :@WindowFeature({ Window.FEATURE_NO_TITLE, Window.FEATURE_INDETERMINATE_PROGRESS }) @EActivity public class MyActivity extends Activity { }
EActivity
Modifier and Type | Required Element and Description |
---|---|
int[] |
value
An array of integers which are
Window.FEATURE_* fields. |
Copyright © 2010-2015. All Rights Reserved.