AutoFill Options in Android Studio

I recently worked in Android Studio and wondered if there is a hot key / parameter / method for the parameters of the autocomplete function after the function call is autocomplete.

For example, if I type db.query (), I would like the following to be displayed when the query is autocompleted:

db.query(table, columns, selection, selectionArgs, groupBy, having, orderBy); 

instead of a function name with empty (but necessary) parameters:

 db.query(); 
+6
source share
1 answer

Android Studio does not automatically execute your functions, but you can show function parameters in another class by pressing Crtl + P This opens a popup with variable names.

This can help

0
source

Source: https://habr.com/ru/post/974571/


All Articles