|
|
@ -247,8 +247,10 @@ public class FragmentOptions extends FragmentBase {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int id = 0;
|
|
|
|
int id = 0;
|
|
|
|
for (int tab = 0; tab < TAB_PAGES.length; tab++)
|
|
|
|
for (int tab = 0; tab < TAB_PAGES.length; tab++) {
|
|
|
|
id = getSuggestions(query.toLowerCase(), id, tab, views[tab], cursor);
|
|
|
|
String title = (String) adapter.getPageTitle(tab);
|
|
|
|
|
|
|
|
id = getSuggestions(query.toLowerCase(), id, tab, title, views[tab], cursor);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
searchView.setSuggestionsAdapter(new SimpleCursorAdapter(
|
|
|
|
searchView.setSuggestionsAdapter(new SimpleCursorAdapter(
|
|
|
@ -261,20 +263,22 @@ public class FragmentOptions extends FragmentBase {
|
|
|
|
));
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private int getSuggestions(String query, int id, int tab, View view, MatrixCursor cursor) {
|
|
|
|
private int getSuggestions(String query, int id, int tab, String title, View view, MatrixCursor cursor) {
|
|
|
|
if (view instanceof ViewGroup) {
|
|
|
|
if (view instanceof ViewGroup) {
|
|
|
|
ViewGroup group = (ViewGroup) view;
|
|
|
|
ViewGroup group = (ViewGroup) view;
|
|
|
|
for (int i = 0; i <= group.getChildCount(); i++)
|
|
|
|
for (int i = 0; i <= group.getChildCount(); i++)
|
|
|
|
id = getSuggestions(query, id, tab, group.getChildAt(i), cursor);
|
|
|
|
id = getSuggestions(query, id, tab, title, group.getChildAt(i), cursor);
|
|
|
|
} else if (view instanceof TextView) {
|
|
|
|
} else if (view instanceof TextView) {
|
|
|
|
String text = ((TextView) view).getText().toString();
|
|
|
|
String description = ((TextView) view).getText().toString();
|
|
|
|
if (text.toLowerCase().contains(query))
|
|
|
|
if (description.toLowerCase().contains(query)) {
|
|
|
|
|
|
|
|
String text = view.getContext().getString(R.string.title_title_description, title, description);
|
|
|
|
cursor.newRow()
|
|
|
|
cursor.newRow()
|
|
|
|
.add(id++)
|
|
|
|
.add(id++)
|
|
|
|
.add(tab)
|
|
|
|
.add(tab)
|
|
|
|
.add(view.getId())
|
|
|
|
.add(view.getId())
|
|
|
|
.add(text);
|
|
|
|
.add(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|