org.androidannotations.annotations
Annotation Type WindowFeature


@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 {
 
 }
 

See Also:
EActivity

Required Element Summary
 int[] value
           
 

Element Detail

value

public abstract int[] value


Copyright © 2010-2014. All Rights Reserved.