2021/01/11 - [안드로이드] - [안드로이드] 동적 메뉴(ActionMode) 만들어 보기
2021/01/12 - [안드로이드] - [안드로이드] 카메라(Camera) 사진(Image) 찍고 가져오기
2021/01/13 - [안드로이드] - [안드로이드]카메라(Camera) 저장공간 지정해서 고화질로 저장하기
2021/01/14 - [안드로이드] - [안드로이드] 차트(Chart) - 데이터를 그래픽으로 표현 Bar, Pie, Radar
이번 시간에는 사용자가 입력한 텍스트를 음성으로 전환 시키는 방법을 알아보겠습니다.
1. 메인화면 구현(activity_main.xml)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<EditText
android:id="@+id/speech_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="메시지를 입력하세요"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:layout_marginTop="55dp"
android:lines="8"
android:minLines="3"
android:gravity="top|left"
android:maxLength="10"
android:padding="3dp"
android:background="@drawable/background_line"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="말하기"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:background="@drawable/background_line"
android:onClick="textSpeech"
/>
</LinearLayout>
에디트텍스트, 버튼에 쓰이는 백그라운드 설정파일
res -> drawable
파일명은 background_line 로 했습니다.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<stroke android:width="1dp" android:color="#5CD1E5"/>
<solid android:color="#FFFFFFFF"/>
</shape>
</item>
</layer-list>
2. 메인코드 구현(MainActivity.java)
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import java.util.Locale;
public class MainActivity extends AppCompatActivity implements TextToSpeech.OnInitListener{
public static final int TTS_ENGINE_REQUEST = 101;
private TextToSpeech textToSpeech;
private EditText textForSpeech;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textForSpeech = findViewById(R.id.speech_text);
}
//텍스트 -> 음성 전환
public void textSpeech(View view) {
Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, TTS_ENGINE_REQUEST);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == TTS_ENGINE_REQUEST && resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS)
{
//음성전환 준비
textToSpeech = new TextToSpeech(this, this);
}
else { //데이터 다운로드
Intent installIntent = new Intent();
installIntent.setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
startActivity(installIntent);
}
}
@Override
public void onInit(int status) {
if(status == TextToSpeech.SUCCESS)//성공
{
int languageStatus = textToSpeech.setLanguage(Locale.KOREAN);
//데이터 문제( 데이터가 없거나, 언어를 지원할 수 없다면
if(languageStatus == TextToSpeech.LANG_MISSING_DATA || languageStatus == TextToSpeech.LANG_NOT_SUPPORTED)
{
Toast.makeText(this, "언어를 지원할 수 없습니다.", Toast.LENGTH_SHORT).show();
}
else { //데이터 성공
String data = textForSpeech.getText().toString();
int speechStatus = textToSpeech.speak(data, TextToSpeech.QUEUE_FLUSH, null);
if(speechStatus == TextToSpeech.ERROR)
{
Toast.makeText(this, "음성전환 에러입니다.", Toast.LENGTH_SHORT).show();
}
}
}
else { //실패
Toast.makeText(this, "음성전환 엔진 에러입니다.", Toast.LENGTH_SHORT).show();
}
}
}
3. 실행화면
2021/01/11 - [안드로이드] - [안드로이드] 동적 메뉴(ActionMode) 만들어 보기
2021/01/12 - [안드로이드] - [안드로이드] 카메라(Camera) 사진(Image) 찍고 가져오기
2021/01/13 - [안드로이드] - [안드로이드]카메라(Camera) 저장공간 지정해서 고화질로 저장하기
2021/01/14 - [안드로이드] - [안드로이드] 차트(Chart) - 데이터를 그래픽으로 표현 Bar, Pie, Radar
[안드로이드] 액티비티(Activity) 활동주기(Life Cycle) (0) | 2021.01.17 |
---|---|
[안드로이드]RecognizerIntent 음성을 텍스트(Text)로 전환시켜주는 방법 (0) | 2021.01.16 |
[안드로이드] 차트(Chart) - 데이터를 그래픽으로 표현 Bar, Pie, Radar (2) | 2021.01.14 |
[안드로이드]카메라(Camera) 저장공간 지정해서 고화질로 저장하기 (0) | 2021.01.13 |
[안드로이드] 카메라(Camera) 사진(Image) 찍고 가져오기 (0) | 2021.01.12 |
댓글 영역