web-dev-qa-db-ja.com

アンドロイドで編集テキストを入力するための音声入力?

私はAndroidで音声入力に取り組んでいます。からのサンプルを使用しました

http://developer.Android.com/resources/samples/ApiDemos/src/com/example/Android/apis/app/VoiceRecognition.html

Xperia X10でテストしているときに、[今すぐ話す]ダイアログが表示されましたが、音声を入力する前に閉じられます。音声検索を実装しようとしています。音声入力がJamesBondの場合、名前にJamesを入力し、姓にBondを入力します。これはデータベースで名前を検索します。しかし、APIデモサンプルを使用しようとすると、機能しません。何かが足りないのかもしれません。 ApiDemosサンプルではなく、音声入力用のサンプルを投稿する人はいますか。

前もって感謝します。

20
Panache

次のコードを音声認識に使用できます。音声認識の完全なチュートリアルについては、ここをクリック

import Android.app.Activity;
import Android.os.Bundle;
import Android.content.Intent;
import Android.content.pm.PackageManager;
import Android.content.pm.ResolveInfo;
import Android.speech.RecognizerIntent;
import Android.view.View;
import Android.widget.ArrayAdapter;
import Android.widget.Button;
import Android.widget.ListView;
import Java.util.ArrayList;
import Java.util.List;

/**
* A very simple application to handle Voice Recognition intents
* and display the results
*/
public class VoiceRecognitionDemo extends Activity
{

private static final int REQUEST_CODE = 1234;
private ListView wordsList;

/**
 * Called with the activity is first created.
 */
@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.voice_recog);

    Button speakButton = (Button) findViewById(R.id.speakButton);

    wordsList = (ListView) findViewById(R.id.list);

    // Disable button if no recognition service is present
    PackageManager pm = getPackageManager();
    List<ResolveInfo> activities = pm.queryIntentActivities(
            new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
    if (activities.size() == 0)
    {
        speakButton.setEnabled(false);
        speakButton.setText("Recognizer not present");
    }
}

/**
 * Handle the action of the button being clicked
 */
public void speakButtonClicked(View v)
{
    startVoiceRecognitionActivity();
}

/**
 * Fire an intent to start the voice recognition activity.
 */
private void startVoiceRecognitionActivity()
{
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
            RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    intent.putExtra(RecognizerIntent.EXTRA_Prompt, "Voice recognition Demo...");
    startActivityForResult(intent, REQUEST_CODE);
}

/**
 * Handle the results from the voice recognition activity.
 */
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
    if (requestCode == REQUEST_CODE && resultCode == RESULT_OK)
    {
        // Populate the wordsList with the String values the recognition engine thought it heard
        ArrayList<String> matches = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);
        wordsList.setAdapter(new ArrayAdapter<String>(this, Android.R.layout.simple_list_item_1,
                matches));
    }
    super.onActivityResult(requestCode, resultCode, data);
}
}
22
Hitesh Patel