AndroidAnnotations is an Open Source framework that speeds up Android development.

seen from United States

seen from United Kingdom
seen from Türkiye

seen from Romania

seen from United States
seen from Brazil
seen from United States
seen from Germany
seen from Russia

seen from United States
seen from United Kingdom

seen from United States
seen from China
seen from United States

seen from Norway

seen from Türkiye
seen from Mexico
seen from United States

seen from Türkiye

seen from Canada
AndroidAnnotations is an Open Source framework that speeds up Android development.
AndroidAnnotations no genera código en .apt_generated
Modificar eclipse.ini. Volver a arrancar Eclipse. Build del proyecto.
-vm /path/to/jdk6/bin/java -vmargs -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=512m -Xms512m -Xmx1024m
Fuente https://github.com/excilys/androidannotations/issues/99
AndroidAnnotations: Clarify and simplify your code!
You are an Android developer who asking himself how to develop Android apps faster ? Would you get a simple and clean Android code ?
AndroidAnnotations project is for you!
AndroidAnnotations or AA uses annotations power to simplify and clarify the Android code heavy and redundant sometimes.
Take a look at this sample code:
@NoTitle // remove title bar @Fullscreen // get fullscreen app @EActivity(R.layout.main) // needed!, define your content view public class PokActivity extends Activity { @ViewById(R.id.buttonA) // do findViewById for you! Button buttonA; @ViewById(R.id.textView) TextView textView; @ViewById(R.id.editText) EditText editText; @Click(R.id.buttonA) // do OnClickListener for you! public void doSomething() { doSomethingInBackground(); } @Background // execute this method on another thread public void doSomethingInBackground() { doSomethingOnTheUiThread(); } @UiThread // execute this method on UiThread public void doSomethingOnTheUiThread() { } @AfterViews protected void afterView() { // do something after views set } }
AA really brings more clarity and readability in Android application code. This example shows a few parts of what AndroidAnnotations can do. So, don't hesitate to visit the official website and the github page. For beginning, I advice you the cookbook.
I contribute on AndroidAnnotations project and I like this project for its aim: Facilitate the Android developer life.
Don't try AA or you'll be addict!