Android音声をテキストに統合する方法は?
Androidは、RecognizerIntent.ACTION_RECOGNIZE_SPEECHを使用してAPIを話すGoogleの組み込みテキストをサポートしています。この例では、Android音声をテキストに統合する方法について説明します。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version = "1.0" encoding = "utf-8"?> <RelativeLayout xmlns:android = "https://schemas.android.com/apk/res/android" xmlns:app = "https://schemas.android.com/apk/res-auto" xmlns:tools = "https://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity"> <LinearLayout android:layout_width = "match_parent" android:gravity = "center" android:layout_height = "match_parent"> <TextView android:id = "@+id/text" android:textSize = "30sp" android:layout_width = "wrap_content" android:layout_height = "wrap_content"/> </LinearLayout> <LinearLayout android:layout_width = "wrap_content" android:layout_alignParentBottom = "true" android:layout_centerInParent = "true" android:orientation = "vertical" android:layout_height = "wrap_content"> <ImageView android:id = "@+id/speak" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:background = "?selectableItemBackground" android:src = "@android:drawable/ic_btn_speak_now"/> </LinearLayout> </RelativeLayout>
上記のコードでは、1つのテキストビューと画像ビューを作成しました。ユーザーが画像ビューをクリックすると、Googleの音声認識APIが呼び出され、テキストがテキストビューに追加されます。
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますpackage com.example.andy.myapplication; import android.content.ActivityNotFoundException; import android.content.Intent; import android.speech.RecognizerIntent; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import java.util.ArrayList; import java.util.Locale; public class MainActivity extends AppCompatActivity { private final int REQ_CODE = 100; TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = findViewById(R.id.text); ImageView speak = findViewById(R.id.speak); speak.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault()); intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Need to speak"); try { startActivityForResult(intent, REQ_CODE); } catch (ActivityNotFoundException a) { Toast.makeText(getApplicationContext(), "Sorry your device not supported", Toast.LENGTH_SHORT).show(); } } }); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); switch (requestCode) { case REQ_CODE: { if (resultCode = = RESULT_OK && null ! = data) { ArrayList result = data .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); textView.setText(result.get(0)); } break; } } } }
上記のコードでは、ユーザーがimageviewをクリックすると、以下に示すようにインテントが呼び出されます-
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault()); intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Need to speak"); try { startActivityForResult(intent, REQ_CODE); } catch (ActivityNotFoundException a) { Toast.makeText(getApplicationContext(), "Sorry your device not supported", Toast.LENGTH_SHORT).show(); }
上記のコードでは、Google APIと呼ばれ、以下に示すようにonActivityResult()で結果を取得します-
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); switch (requestCode) { case REQ_CODE: { if (resultCode = = RESULT_OK && null ! = data) { ArrayList result = data .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); textView.setText(result.get(0)); } break; } } }
上記のコードでは、結果を配列リストとして取得するため、配列リストからゼロの位置を取得し、テキストビューに追加しています。
アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-
ユーザーがマイクボタンをクリックすると、以下に示すようにGoogleAPIが呼び出されます-
これで、「HeyGOOGLE」として入力が行われました。以下に示すように結果を追加します-
-
Text to Speech Android の使用方法
Android デバイスは、平均的なユーザーを圧倒する傾向にある新しくてエキサイティングな機能をリリースする習慣を身につけてきました。イノベーションのカタログに追加された最新の機能は、ユーザーが目を酷使して読むのではなく、テキストを聞くことができるようにする機能です。トニー・スタークの本から 1 ページ取り出して、仮想アシスタントにメッセージを配信してもらいたい場合は、Android に組み込まれているテキスト読み上げ機能と、Android でテキスト メッセージを読み上げるアプリを使用する方法についてのガイドをご覧ください。 Text to Speech Android の使用方法
-
Android で Google テキストを音声に変換する方法
Android デバイスでテキスト読み上げ音声を理解できませんか?この機能を最大限に活用するための変更をお手伝いします。 Android ユーザーは、多くの便利な機能を備えた組み込みの Google テキスト読み上げアプリを利用する必要があります。アクセシビリティ機能を使用すると、Android アプリの画面上のテキストを聞くことができます。オプションの 1 つは、複数の Text to Speech 音声を提供することです。 Android アプリの使用中に最大限に活用したいものを選択してください。また、Android 用のテキスト読み上げアプリとして他にもいくつかのオプションを試すことがで