We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Since AndroidAnnotations 2.2
If you never remember how to hide the title bar, and how to set an activity to fullscreen, those annotations are for you!
This annotation requests the Window feature Window.FEATURE_NO_TITLE.
Window.FEATURE_NO_TITLE
@NoTitle public class MyActivity extends Activity { }
This annotation adds the Window flag LayoutParams.FLAG_FULLSCREEN.
LayoutParams.FLAG_FULLSCREEN
@Fullscreen public class MyActivity extends Activity { }