8000 WindowFeatureAndFullscreen · androidannotations/androidannotations Wiki · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.

WindowFeatureAndFullscreen

WonderCsabo edited this page May 25, 2015 · 3 revisions

@WindowFeature

Since AndroidAnnotations 3.0

You can customize your window features by using @WindowFeature on an enhanced activity. The annotation value should be one or several of Window FEATURE_* constants.

@WindowFeature({ Window.FEATURE_NO_TITLE, Window.FEATURE_INDETERMINATE_PROGRESS })
@EActivity
public class MyActivity extends Activity {
 
}

@Fullscreen

Since AndroidAnnotations 2.2

This annotation adds the Window flag LayoutParams.FLAG_FULLSCREEN.

@Fullscreen
public class MyActivity extends Activity {

}

Using AndroidAnnotations

Questions?

Enjoying AndroidAnnotations

Improving AndroidAnnotations

Extending AndroidAnnotations

Clone this wiki locally

0