Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of any Eclipse plug-in or anything that can be used to automatically generate Java code from layout file? As in, if I have an EditText in my layout file with the ID "@+id/txtHello", I expect something like the following to be generated:

EditText txtHello = (EditText) findViewById(R.id.txtHello);

Thanks for your time!

Harris :)

share|improve this question

5 Answers

up vote 3 down vote accepted

There is an Eclipse plugin that does exactly what you want , I guess: http://marketplace.eclipse.org/content/lazy-android

share|improve this answer

Normally there are three different ways to do this:

  1. at run time (via annotations per reflection)
  2. at compile time (via annotations or aspects)
  3. at development time (via code generators)

A good article to start is http://blog.springsource.com/2011/08/26/clean-code-with-android/ .

Ad 1) Two solutions, see

Ad 2) Android Annotations, see http://androidannotations.org/

Ad 3) Two solutions, see

If there is more, please tell! I personally prefer 2) and therefore Android Annotations.

Hope that helps!

share|improve this answer

Use this online tool:

http://www.buzzingandroid.com/tools/android-layout-finder/

It simply gets the job done quickly. I use it every day.

share|improve this answer

Why not attack the problem from the other direction? I don't know of any plugin allowing you to generate java via xml layout files, but you could likely generate the requisite xml layout files via java using StringBuilder().

share|improve this answer

I use MotoDev Studio. It really saves time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.