歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android語音識別技術

今天從網上找了個例子實現了語音識別,個人感覺挺好玩的,就把代碼貼出來與大家分享下:

Android中主要通過RecognizerIntent來實現語音識別,其實代碼比較簡單,但是如果找不到設置,就會拋出異常ActivityNotFoundException,所以我們需要捕捉這個異常。而且語音識別在模擬器上是無法測試的,因為語音識別是訪問google雲端數據,所以如果手機的網絡沒有開啟,就無法實現識別聲音的!一定要開啟手機的網絡,如果手機不存在語音識別功能的話,也是無法啟用識別!

下面是RecognizerIntentActivity中的代碼:

  1. public class RecognizerIntentActivity extends Activity {  
  2.   
  3.     private Button btnReconizer;  
  4.     private static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;  
  5.     @Override  
  6.     protected void onCreate(Bundle savedInstanceState) {  
  7.         // TODO Auto-generated method stub  
  8.         super.onCreate(savedInstanceState);  
  9.         setContentView(R.layout.reconizer);  
  10.           
  11.         btnReconizer=(Button) this.findViewById(R.id.btnRecognizer);  
  12.         btnReconizer.setOnClickListener(new OnClickListener() {  
  13.               
  14.             @Override  
  15.             public void onClick(View v) {  
  16.                 // TODO Auto-generated method stub  
  17.                 try{  
  18.                 //通過Intent傳遞語音識別的模式,開啟語音  
  19.                 Intent intent=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);  
  20.                 //語言模式和自由模式的語音識別  
  21.                 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);  
  22.                 //提示語音開始  
  23.                 intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "開始語音");  
  24.                 //開始語音識別  
  25.                 startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);  
  26.                 }catch (Exception e) {  
  27.                     // TODO: handle exception  
  28.                     e.printStackTrace();  
  29.                     Toast.makeText(getApplicationContext(), "找不到語音設備", 1).show();  
  30.                 }  
  31.             }  
  32.         });  
  33.           
  34.     }  
  35.       
  36.     @Override  
  37.     protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
  38.         // TODO Auto-generated method stub  
  39.         //回調獲取從谷歌得到的數據   
  40.         if(requestCode==VOICE_RECOGNITION_REQUEST_CODE && resultCode==RESULT_OK){  
  41.             //取得語音的字符  
  42.             ArrayList<String> results=data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);  
  43.               
  44.             String resultString="";  
  45.             for(int i=0;i<results.size();i++){  
  46.                 resultString+=results.get(i);  
  47.             }  
  48.             Toast.makeText(this, resultString, 1).show();  
  49.         }  
  50.         super.onActivityResult(requestCode, resultCode, data);  
  51.     }  
  52. }  
Copyright © Linux教程網 All Rights Reserved