[Solved] Fill AutocompleteTextView on letter click [closed]
You can use a filter like FilterQueryProvider with LIKE % command which will try to match character more efficiently rather than just pulling out the whole information. Example, // select query String sql = “”; sql += “SELECT * FROM ” + tableName; sql += ” WHERE ” + fieldObjectName + ” LIKE ‘%” + … Read more