Home | History | Annotate | Download | only in quicksearchbox

Lines Matching refs:Settings

34 import android.provider.Settings;
35 import android.provider.Settings.System;
132 * search settings.
147 Log.e(TAG, "No web search settings activity");
151 Log.e(TAG, "More than one web search settings activity");
187 * Informs our listeners about the updated settings data.
197 return (Settings.System.getInt(context.getContentResolver(),
198 Settings.System.SHOW_WEB_SUGGESTIONS,
210 Settings.System.getUriFor(Settings.System.SHOW_WEB_SUGGESTIONS),
220 Intent settings = new Intent(SearchManager.INTENT_ACTION_SEARCH_SETTINGS);
221 settings.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
222 // Don't show activity chooser if there are multiple search settings activities,
224 settings.setPackage(context.getPackageName());
227 .setIntent(settings);