Search suggestions from history now match the URL as well as title
This commit is contained in:
parent
f5de4626ef
commit
e4cf9af26a
@ -111,7 +111,7 @@ public class DatabaseHandler extends SQLiteOpenHelper {
|
|||||||
List<HistoryItem> itemList = new ArrayList<HistoryItem>();
|
List<HistoryItem> itemList = new ArrayList<HistoryItem>();
|
||||||
// select query
|
// select query
|
||||||
String selectQuery = "SELECT * FROM " + TABLE_HISTORY + " WHERE " + KEY_TITLE + " LIKE '%"
|
String selectQuery = "SELECT * FROM " + TABLE_HISTORY + " WHERE " + KEY_TITLE + " LIKE '%"
|
||||||
+ search + "%'";
|
+ search + "%' OR " + KEY_URL + " LIKE '%" + search + "%'";
|
||||||
Cursor cursor = mDatabase.rawQuery(selectQuery, null);
|
Cursor cursor = mDatabase.rawQuery(selectQuery, null);
|
||||||
|
|
||||||
// looping through all rows and adding to list
|
// looping through all rows and adding to list
|
||||||
|
Loading…
x
Reference in New Issue
Block a user