This repository was archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
WindowFeatureAndFullscreen
WonderCsabo edited this page May 25, 2015
·
3 revisions
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 {
}Since AndroidAnnotations 2.2
This annotation adds the Window flag LayoutParams.FLAG_FULLSCREEN.
@Fullscreen
public class MyActivity extends Activity {
}19/11/2020 The 4.8.0 release is out !
- Get started!
- Cookbook, full of recipes
- Customize annotation processing
- List of all available annotations
- Release Notes
- Examples
- Read the FAQ
- Join the Mailing list
- Create an issue
- Tag on Stack Overflow
- Ask on Gitter