0
I wonder if there are any features in Android Studio where I type in a word and the IDE inserts an add-on (OBS: Where I report this, not the IDE itself). Example:
buttonobj -> Button btnexemplo = (Button) findViewById(R.id.btnexemplo);
When typing buttonobj
+SPACE she would insert:
Button btnexemplo = (Button) findViewById(R.id.btnexemplo);
There is this feature in Netbeans, would anyone know if there is one in Android Studio? And where do I set it up?
Thank you Marceloawq, that’s what I was looking for.
– Luiz Roberto Furtuna