I've tried this (using an N1 running 2.2):

Intent i = RecognizerIntent.getVoiceDetailsIntent(this);
sendOrderedBroadcast(i, null, new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
                Bundle b = intent.getExtras();
                Log.i(TAG, "bundle: " + b);
        }
}, null, Activity.RESULT_OK, null, null);

The onReceive() method is being called, but the bundle is null.

Has anyone managed to get this working?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to