GreenDroidIntegration - PerfectCarl/androidannotations GitHub Wiki
Since AndroidAnnotations 2.5
AndroidAnnotations integrates smoothly with GreenDroid.
You just need to use the GreenDroid library in a standard way, and then annotate your activities with AndroidAnnotations.
@EActivity(R.layout.my_layout)
public class MyActivity extends GDActivity {
}
The main difference here is that AndroidAnnotations will call setActionBarContentView()
instead of setContentView()
.