I would like to know if there is any functionality in Android Studio where I type a word and the IDE inserts an add-in (NOTE: In that I reported this, not the IDE itself). Example:
buttonobj -> Button btnexemplo = (Button) findViewById(R.id.btnexemplo);
When you type buttonobj
+ SPACE it would insert:
Button btnexemplo = (Button) findViewById(R.id.btnexemplo);
Is there such a feature in NetBeans, could anyone tell me if there is in Android Studio? And where do I set this up?