1. 程式人生 > >android離線語音識別demo

android離線語音識別demo

開始做這個的時候,從網上當了一段程式碼,但後來測試老是提示沒有找到裝置。。。非常煩人。。。

經過多方查詢資料,發現需要裝一個Google語音的外掛,執行語音識別的時候要用到。如果沒有就提示沒有找到裝置。

程式碼如下:

[java] view plaincopyprint?
  1. publicclass RecognizerIntentActivity extends Activity {  
  2.     private Button btnReconizer;  
  3.     privatestaticfinalint VOICE_RECOGNITION_REQUEST_CODE = 
    1234;  
  4.     @Override
  5.     protectedvoid onCreate(Bundle savedInstanceState) {  
  6.         // TODO Auto-generated method stub
  7.         super.onCreate(savedInstanceState);  
  8.         setContentView(R.layout.reconizer);  
  9.         btnReconizer=(Button) this.findViewById(R.id.btnRecognizer);  
  10.         btnReconizer.setOnClickListener(new
     OnClickListener() {  
  11.             @Override
  12.             publicvoid onClick(View v) {  
  13.                 // TODO Auto-generated method stub
  14.                 try{  
  15.                 //通過Intent傳遞語音識別的模式,開啟語音
  16.                 Intent intent=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);  
  17.                 //語言模式和自由模式的語音識別
  18.                 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);  
  19.                 //提示語音開始
  20.                 intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "開始語音");  
  21.                 //開始語音識別
  22.                 startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);  
  23.                 }catch (Exception e) {  
  24.                     // TODO: handle exception
  25.                     e.printStackTrace();  
  26.                     Toast.makeText(getApplicationContext(), "找不到語音裝置"1).show();  
  27.                 }  
  28.             }  
  29.         });  
  30.     }  
  31.     @Override
  32.     protectedvoid onActivityResult(int requestCode, int resultCode, Intent data) {  
  33.         // TODO Auto-generated method stub
  34.         //回撥獲取從谷歌得到的資料 
  35.         if(requestCode==VOICE_RECOGNITION_REQUEST_CODE && resultCode==RESULT_OK){  
  36.             //取得語音的字元
  37.             ArrayList<String> results=data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);  
  38.             String resultString="";  
  39.             for(int i=0;i<results.size();i++){  
  40.                 resultString+=results.get(i);  
  41.             }  
  42.             Toast.makeText(this, resultString, 1).show();  
  43.         }  
  44.         super.onActivityResult(requestCode, resultCode, data);  
  45.     }  
  46. }  

上邊的那個需要連網,因為是把語音訊號傳送到google伺服器上進行比對、識別的。所以這次打算弄個離線的demo,就是開著航班模式也能識別的。demo。

參考如下:

程式碼可以從這裡下載: