October 2018
Intermediate to advanced
464 pages
15h 17m
English
As you'll see, there's a lot of code for this recipe. Start by opening the Android Manifest and following these steps:
<uses-permission android:name="android.permission.CAMERA" /><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<TextureView android:id="@+id/textureView" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toTopOf="@+id/button" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" /><android.support.v7.widget.AppCompatButton android ...