0

これまでのアプリケーションの簡単な説明:

ユーザーには、単語を含むTextViewが表示されます。ユーザーは、Speech To Text API をトリガーするImageButtonをクリックし、 TextViewで指定された単語を言います。Speech To Text のテキストとTextViewのテキストが一致する場合、TextViewはテキストを「正しい!」に変更します。等

問題は、文字列のテキスト値を比較することです。TextViewには「こんにちは」があります。「こんにちは」と言うと、SpeechToText API は「こんにちは」を返しますが、テキスト値は異なると見なされます。

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".Main"
    android:orientation="vertical" >
    <ImageButton
        android:id="@+id/btnSpeak"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:src="@android:drawable/ic_btn_speak_now" />
    <TextView
        android:id="@+id/inputText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textAppearance="?android:attr/textAppearanceLarge" 
        android:layout_gravity="center"/>
    <TextView
        android:id="@+id/givenText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/text"
        android:layout_gravity="center" />
</LinearLayout>

Main.Java

package com.example.speechtotext;
import java.util.ArrayList;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.Menu;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;

public class Main extends Activity {
    protected static final int RESULT_SPEECH = 1;
    private ImageButton btnSpeak;
    private TextView inputText;
    private TextView givenText;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        inputText = (TextView)findViewById(R.id.inputText);
        givenText = (TextView)findViewById(R.id.givenText);
        btnSpeak = (ImageButton)findViewById(R.id.btnSpeak);
        btnSpeak.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
                intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");
                try{
                    startActivityForResult(intent, RESULT_SPEECH);
                    inputText.setText("");
                }catch(ActivityNotFoundException a) { 
                    Toast t = Toast.makeText(getApplicationContext(),
                            "your device does not support Speech to Text!",Toast.LENGTH_SHORT);
                    t.show();
                }
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        switch (requestCode) {
        case RESULT_SPEECH: {
            if (resultCode == RESULT_OK && null != data) {

                ArrayList<String> text = data
                        .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);

                inputText.setText(text.get(0));

                if(givenText.getText().toString().equals(inputText.getText().toString())){
                    givenText.setText("Correct!");
                }
                else{
                    givenText.setText("Incorrect!");
                }
            }
            break;
        }
        }
    }
}

何か案は?

4

1 に答える 1

1

直面している問題は、コード内の 1 行を変更することで簡単に解決できます。つまり、次のようになります。

if(givenText.getText().toString().equals(inputText.getText().toString())){

それを次のように変更します。

if(givenText.getText().toString().equalsIgnoreCase(inputText.getText().toString())){

また、同様のアプリに取り組んでいたときに行った一般的な観察として、Speech Recognition API は完璧ではなく、API が訓練されたものと一致するアクセントをユーザー/ユーザーが持っていない限り、うまく機能しないことに気付きました。の上。したがって、これを修正するには、返された文字列の ArrayList を調べて、すべての文字列をチェックして、ユーザーに表示したテキストと一致する文字列があるかどうかを確認することを検討する必要があります。

于 2013-09-21T05:18:45.897 に答える