Lazy Android 1.0.0.61
Categories:
Right click an android XML layout, go to Fast Layout -> Generate Activity. It'll generate those tedious findViewById declarations. For the layout below, it produces:
/**********DECLARES*************/
private EditText addmanualname;
private EditText addmanualnumber;
private EditText addmanualemail;
private EditText addmanualmessage;
private EditText addmanualaddress;
private Button addmanualcontinueButton;
private Button addmanualbackButton;
/**********INITIALIZES*************/
addmanualname = (EditText) findViewById(R.id.addmanualname);
addmanualnumber = (EditText) findViewById(R.id.addmanualnumber);
addmanualemail = (EditText) findViewById(R.id.addmanualemail);
addmanualmessage = (EditText) findViewById(R.id.addmanualmessage);
addmanualaddress = (EditText) findViewById(R.id.addmanualaddress);
addmanualcontinueButton = (Button) findViewById(R.id.addmanualcontinueButton);
addmanualbackButton = (Button) findViewById(R.id.addmanualbackButton);
Additional Details
- Version Number: 1.0.0.61
- Eclipse Versions: INDIGO
- Organization: Calculating a Surface Normal Blog
- Date Created: 01/09/2011
- Date Updated: 16/09/2011
- Development Status: Alpha
- License: Apache 2.0
- Submitted by: Ryan Mattison
- This listing has been installed 159 times in the last 30 days.
By Tomas Prochazka
great plugins
Great plugin! More like this.
I only would prefer call it directly from code, like quick action (like "Generate toString()") if cursor will be on layout reference or open dialog with layout search.

