Selva
Selva

Reputation: 839

Android :voice recognition service

[possibly duplicate] But I didn't find answers to my questions below.

Is it possible to run voice recognition as a service? I would like to implement something like this: I need to call a number though my phone through voice recognition is in sleep mode. Is there any sensor to detect the voice apart from the voice recognition?

Upvotes: 1

Views: 972

Answers (1)

Tuan Vu
Tuan Vu

Reputation: 6437

I'm working with Voice Recognition, and i think it's impossible to run voice recognition as a service. Because of:

  1. Problem Performance : to run as service you must call Voice Recognizer continous.

  2. Don't have API Supports: to run as service you must use Service and call Voice Recognizer continous.

So, find other solution instead Voice Recognition.

Upvotes: 1

Related Questions