2016-05-21 28 views
4

我只是試圖在點擊按鈕(沒有彈出窗口或任何東西)時創建語音識別的虛擬應用程序。SpeechRecognizer的權限不足,儘管它設置在清單中

我的Android清單文件:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
      package="billobob.org.speechtest"> 
    <uses-permission android:name="android.permission.RECORD_AUDIO" /> 
    <uses-permission android:name="android.permission.INTERNET" /> 
    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 
     <activity 
      android:name=".MainActivity" 
      android:label="@string/app_name" 
      android:theme="@style/AppTheme.NoActionBar"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN"/> 

       <category android:name="android.intent.category.LAUNCHER"/> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

和碎片住房什麼實際事情:

package billobob.org.speechtest; 

import android.content.Intent; 
import android.os.Bundle; 
import android.speech.RecognitionListener; 
import android.speech.RecognizerIntent; 
import android.speech.SpeechRecognizer; 
import android.support.v4.app.Fragment; 
import android.util.Log; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.Button; 
import android.widget.TextView; 

import java.util.ArrayList; 

/** 
* Simple app for recognizing speech 
*/ 
public class MainActivityFragment extends Fragment { 

    protected static final int RESULT_SPEECH = 1234; 

    private TextView mSpeechTextView1; 
    private TextView mSpeechTextView2; 
    private Button mSpeechButton; 
    private String speechString; 
    private SpeechRecognizer mSpeechRecognizer; 
    private Intent mSpeechRecognizerIntent; 
    boolean mIsListening = false; 

    public MainActivityFragment() { 
    } 

    @Override 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
          Bundle savedInstanceState) { 
     View view = inflater.inflate(R.layout.fragment_main, container, false); 
     mSpeechTextView1 = (TextView) view.findViewById(R.id.textView1); 
     mSpeechTextView2 = (TextView) view.findViewById(R.id.textView2); 
     mSpeechButton = (Button) view.findViewById(R.id.speechButton); 
     mSpeechRecognizer = SpeechRecognizer.createSpeechRecognizer(this.getContext()); 
     mSpeechRecognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); 
     mSpeechRecognizerIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, 
       RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); 
     mSpeechRecognizerIntent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, this.getActivity().getPackageName()); 


     SpeechRecognitionListener listener = new SpeechRecognitionListener(); 
     mSpeechRecognizer.setRecognitionListener(listener); 

     mSpeechButton.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       if (!mIsListening) 
       { 
        Log.d("UUXX", "clicked"); 
        mIsListening = true; 
        mSpeechRecognizer.startListening(mSpeechRecognizerIntent); 
       } 
      } 
     }); 
     return view; 
    } 

    @Override 
    public void onDestroyView() { 
     if (mSpeechRecognizer != null) 
     { 
      mSpeechRecognizer.stopListening(); 
      mSpeechRecognizer.cancel(); 
      mSpeechRecognizer.destroy(); 
     } 
     super.onDestroyView(); 
    } 

    protected class SpeechRecognitionListener implements RecognitionListener { 
     @Override 
     public void onReadyForSpeech(Bundle params) { 
      Log.d("UUSP", "in read"); 
     } 

     @Override 
     public void onBeginningOfSpeech() { 
      Log.d("UUSP", "begin!"); 
     } 

     @Override 
     public void onRmsChanged(float rmsdB) { 

     } 

     @Override 
     public void onBufferReceived(byte[] buffer) { 

     } 

     @Override 
     public void onEndOfSpeech() { 
      Log.d("UUSP", "end"); 
     } 

     @Override 
     public void onError(int error) { 

     } 

     @Override 
     public void onResults(Bundle results) { 
      ArrayList<String> matches = results.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION); 
      Log.d("UUSP", matches != null ? matches.get(0) : null); 
      mIsListening = false; 
      mSpeechTextView1.setText(matches.get(0)); 
     } 

     @Override 
     public void onPartialResults(Bundle partialResults) { 
      Log.d("UUSP", "partial..."); 
     } 

     @Override 
     public void onEvent(int eventType, Bundle params) { 
      Log.d("UUSP", "event?"); 
     } 
    } 
} 

按鈕註冊點擊,但沒有什麼事情發生。我注意到在非應用程序日誌的錯誤:

05-20 20:56:32.022 18200-19108/? E/RecognitionService: call for recognition service without RECORD_AUDIO permissions 

總是發生,儘管我表面上在清單上設置權限。我正在用Android Studio 2.1在6P上測試它。任何幫助將非常感激!

回答