Posts

Showing posts from October, 2018

Text Recognition App - Android Studio - Java

Image
In this video we will extract Text from the Image taken from: ✓Camera ✓Gallery Using the Google Vision API. We will also handle run-time permission for ✓CAMERA ✓WRITE_EXTERNAL_STORAGE Purchase Code: https://www.fiverr.com/share/3AmPr Libraries Used: Google Vision: https://developers.google.com/android/guides/releases Image Cropper: https://github.com/ArthurHub/Android-Image-Cropper

Technify Soft - Our Apps/Games on Playstore

Image
We develop useful Apps/Games for every kind of user: >>Check Our Apps/Games:

Animatoo

Image
A lightweight and easy to use Android library that provides many activity transition animations. Min SDK 16 (Android Jellybean 4.1) Written in Java Can be used in Kotlin A lightweight, easy-to-use Android library that provides awesome activity transition animations To download the demo app for this library from Google Playstore so you can see it in action, click here:   Installation Add this into your root build.gradle file: allprojects { repositories { ... maven { url ' https://jitpack.io ' } } } Add the dependency to your module build.gradle: dependencies { implementation ' com.github.mohammadatif:Animatoo:master ' } Usage Animatoo has 15 different activity transition animations: in and out. swipe left. swipe right. split. shrink. card. zoom. fade. spin. diagonal. windmill. slide up. slide down. slide left. slide right. Using Animatoo is extremely simple, A single short line of code following sta

Text To Speech - Android Studio - Kotlin

Image
In this video we will create a "Text To Speech" application, which can be used to speak the text from any view e.g. EditText, TextView etc. >> Watch For Java VIDEO: Step 1:  Create a new Project  or  open new project Step 2: Code activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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:padding= "5dp" tools:context= ".MainActivity" > <!--EditText: whose text to be spoken--> <EditText android:id= "@+id/textEt" android:layout_width= "match_parent" android:layout_height= "wrap_content" an

Text To Speech - Android Studio - Java

Image
In this video we will create a "Text To Speech" application, which can be used to speak the text from any view e.g. EditText, TextView etc. >> Watch For Kotlin: VIDEO: Step 1:  Create a new project   OR   Open your project Step 2: Code activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" xmlns:app= "http://schemas.android.com/apk/res-auto" android:layout_width= "match_parent" android:layout_height= "match_parent" android:padding= "5dp" tools:context= ".MainActivity" > <!--EditText in which we will input text to speak--> <EditText android:id= "@+id/textEt" android:layout_width= "match_parent" android:layout_height= "wrap_con