답변: 안드로이드 대화 접근 이벤트 답변: 안드로이드 대화 접근 이벤트
답변: Android 대화식 액세스 이벤트
20년 1월 9일
0
옵션 1 - 텍스트만 읽으려면: 음성으로 텍스트 맞추기
참조 this answer
Android 1.6+에는 문자 음성 변환이 내장되어 있습니다.다음은 이 점을 어떻게 하는지 간단한 예이다.TextToSpeech tts = new TextToSpeech(this, this);
tts.setLanguage(Locale.US);
tts.speak("Text to say aloud", TextToSpeech.QUEUE_ADD, null);
…
Open Full Answer
Reference
이 문제에 관하여(답변: 안드로이드 대화 접근 이벤트 답변: 안드로이드 대화 접근 이벤트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mayank1513/answer-android-talkback-accessibility-events-3g1n
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
TextToSpeech tts = new TextToSpeech(this, this);
tts.setLanguage(Locale.US);
tts.speak("Text to say aloud", TextToSpeech.QUEUE_ADD, null);
Reference
이 문제에 관하여(답변: 안드로이드 대화 접근 이벤트 답변: 안드로이드 대화 접근 이벤트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mayank1513/answer-android-talkback-accessibility-events-3g1n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)