Android hỗ trợ văn bản có sẵn của Google để nói API bằng RecognizerIntent.ACTION_RECOGNIZE_SPEECH. Trong ví dụ này, minh họa về cách tích hợp giọng nói của Android với văn bản.
Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.
Bước 2 - Thêm mã sau vào 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>
Trong đoạn mã trên, chúng tôi đã tạo một chế độ xem văn bản và chế độ xem hình ảnh. Khi người dùng nhấp vào chế độ xem hình ảnh, nó sẽ gọi API giọng nói thành văn bản của Google và thêm văn bản vào chế độ xem văn bản.
Bước 3 - Thêm mã sau vào 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; } } } }
Trong đoạn mã trên khi người dùng nhấp vào imageview, nó sẽ gọi ý định như hình dưới đây -
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(); }
Trong đoạn mã trên, chúng tôi được gọi là API Google và sẽ nhận được kết quả trên onActivityResult () như hình bên dưới -
@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; } } }
Trong đoạn mã trên, chúng ta sẽ nhận được kết quả là Danh sách Mảng vì vậy chúng ta đang lấy vị trí số 0 từ danh sách mảng và thêm vào chế độ xem văn bản.
Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -
Khi người dùng nhấp vào nút micrô, nó sẽ gọi API Google như hình dưới đây -
Bây giờ chúng tôi đã cung cấp thông tin đầu vào là "Hey GOOGLE". Nó sẽ nối kết quả như hình dưới đây -