Does the following feature exist in Android Developer Tools.
After you have created your XML layout, is there a quick way to quickly import those views into your java code automatically.
This is to save you typing in the
EditText editText = (EditText) findViewById(R.id.search)
Is there some short cut which will automatically generate this code by looking at my XML file ?
This is not the exact answer but look at roboguice. It’s dependency injection framework for Android.