Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In order to use the speech recognition intent on Android, I need to be able to call getStringArrayListExtra on the intent in the activity result callback. Unfortunately, it looks like Titanium doesn't have a wrapper for this method in its Intent class. Does anyone know how I can go about getting this data despite this method not existing?

Here's my code:

  var intent = Ti.Android.createIntent({
    action: FOTT.VoiceRecognizer.ACTION_RECOGNIZE_SPEECH
  });

  /* ...snip... */

  Ti.Android.currentActivity.startActivityForResult(intent, function(event) {
    if (event.resultCode == Ti.Android.RESULT_OK) {
      var results = event.intent.getStringArrayListExtra("android.speech.extra.RESULTS");
      console.log(results);
    }
  });
share|improve this question

1 Answer

up vote 0 down vote accepted

It turns out Titanium's Intent Proxy does not include a wrapper for this method. As such, I wrote a custom module to solve the problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.