@Override
public boolean onSearchRequested() {
Bundle appData = new Bundle();
appData.putBoolean(SearchableActivity.JARGON, true);
startSearch(null, false, appData, false);
return true;
}
I have taken this snippet form this developer guide.
The question is that is SearchableActivity.JARGON
just an identifier/name just like any other name (like 'myBoolean'
or 'bool'
etc.)? Or is it some special key in Android?
I couldn't find any information specific about SearchableActivity.JARGON
from my Google search.