Skip to main content

Posts

Showing posts from June, 2019

How to make a Text to Speech Application Android? - ABNHive

Reading the tiny text on a mobile screen is never a fun experience. That text reading done by your android application is another level of experience. Now, get ready to make a Text to speech application. Now Open Android Studio and create a project. After creating the project, you can open the  activity_main.xml file in res/layout  and type the following code. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#3498db" android:weightSum="1" android:orientation="vertical" > <EditText android:id="@+id/text_enter" android:layout_width="match_parent" android:layout_weight=".5" android:background="#fff" android:textColor="#2c3e50&quo