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();
source share