Skip to content

JonathanMoreno14/AndroidSpeechToTextApp

Repository files navigation

SpeechlyText

  • Speech to Text Android Application

webp net-gifmaker 3

Dependency

 implementation 'com.android.support:design:27.1.1'

Permission

app/manifests/AndroidManifest.xml

  <uses-permission android:name="android.permission.RECORD_AUDIO"/>

Colors

app/res/values/colors.xml

<color name="colorPrimary">#673AB7</color>
<color name="colorPrimaryDark">#512DA8</color>
<color name="colorAccent">#607D8B</color>
<color name="colorText">#D1C4E9</color>
<color name="colorSecondaryText">#FFFFFF</color>

Styling/Theme

app/res/values/styles.xml

<!--Custom Theme with no ActionBar-->
 <style name="AppThemefull" parent="Theme.AppCompat.Light.NoActionBar">
     <item name="colorPrimary">@color/colorPrimary</item>
     <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
     <item name="colorAccent">@color/colorAccent</item>
     <item name = "android:windowActionBar">false</item>
     <item name = "android:windowNoTitle">true</item>
 </style>

Dimensions

app/res/values/dimens.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="buttonHeight">80dp</dimen>
    <dimen name="buttonWidth">80dp</dimen>
</resources>

References

Androstock

RecognizerIntent

Programcreek

About

A simple Android Speech to Text application using RecognizerIntent

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages