Lines Matching refs:intent
21 import android.content.Intent;
48 protected void onNewIntent(Intent intent) {
49 handleIntent(intent);
53 * Assuming this activity was started with a new intent, process the incoming information and
55 * @param intent
57 private void handleIntent(Intent intent) {
58 // Special processing of the incoming intent only occurs if the if the action specified
59 // by the intent is ACTION_SEARCH.
60 if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
63 String query = intent.getStringExtra(SearchManager.QUERY);