June 2018
Beginner to intermediate
394 pages
9h 2m
English
Before we plunge into writing the application, let's understand the functionality. When the picture is captured through camera intents, we will convert the picture to bitmap and send it to ML Kit. I have used two buttons, ImageView and TextView.
The following layout is the intended design for this project:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <ImageView android:id="@+id/imageView" android:layout_width="match_parent" android:layout_height="250dp" />
Within the ...