ANDROID APP

The way to convert Textual content to Speech in your Android App? – Full supply code



This video reveals a easy steps to create an App which may convert the Textual content to Speech. Just like if you wish to have your telephone learn out one thing for you. Say for instance if you wish to have your Android App to learn out a string message or some passage or some texts from PDF then it’s the greatest App to create it.

The steps proven are quite simple. It simply makes use of TextToSpeech object within the Android’s java code and converts the string entered within the Edit Textual content widget within the structure. By the press of a button, within the onclick methodology the TextToSpeech.communicate mthod is named to generate the speech for it.

On this video it’s also proven how one can choose completely different locale (equivalent to US, UK, Canada) and set the speech price utilizing the properties of the TextToSpeech object.

We will likely be glad to listen to from you relating to any question, ideas or appreciations at: programmerworld1990@gmail.com

https://programmerworld.co/android/how-to-convert-text-to-speech-in-your-android-app-complete-source-code/

——————-

Supply Code:

package deal com.instance.mysampletexttospeech;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.view.View;
import android.widget.EditText;

import java.util.Locale;

public class MainActivity extends AppCompatActivity {

non-public EditText editText;
non-public TextToSpeech textToSpeech;

@Override
protected void onCreate(Bundle savedInstanceState) {
tremendous.onCreate(savedInstanceState);
setContentView(R.structure.activity_main);

editText = findViewById(R.id.editText);
textToSpeech = new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
@Override
public void onInit(int i) {
textToSpeech.setLanguage(Locale.US);
textToSpeech.setSpeechRate((float) 2.5);

}
});
}

public void TextToSpeechButton(View view){
textToSpeech.communicate(editText.getText().toString(), TextToSpeech.QUEUE_FLUSH, null,null);
}
}

source