The android video app recording audio tutorial describes how to add audio to the video for the recording camera capture session. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-audio or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-audio Steps Add record audio permission to the AndroidManifest file <?xml version="1.0" […]

Read more

The android video app still capture recording tutorial describes the how to take a photo or photos while recording a video. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-record or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-record Steps  Add record capture session & record capture session members private […]

Read more

The android video app still capture session tutorial describes the setup of the camera capture session for capturing  a still image once the autofocus has locked. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-preview or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-preview Steps Add members for the image folder […]

Read more

The android video app still image setup tutorial describes the steps involved for setting up the still image part of android video app. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-setup or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-setup Steps Setup members for the image size and image reader […]

Read more

Introduction The android studio debugging workaround fix tutorial episode describes how to implement a fix for for Samsung 5 series devices which are having record problems. The device I have used to replicate this issue is the Samsung Note 4 device. Diagnosis From the previous tutorial we believed we have found the cause of the […]

Read more

Android studio debugging identifying cause – Introduction The android studio debugging identifying cause tutorial episode explains some steps for helping to identify the cause of a suspected bug. Android studio debugging step Software debugging can be considered a black art by some. Which usually involves many years of experience accumulating in almost instinctive diagnostic abilities. But […]

Read more

Story Background In the android studio debugging introduction post I want to talk about when people submit bug requests in the form of youtube comments. I make my tutorials with Nexus devices using the latest version of android OS at the time. Therefore I only support the Nexus devices on the version of Android OS that I […]

Read more

Introduction The android studio git creating applying patches tutorial explains how to use android studio for generating patches which would generally be used for code fixes. And then the tutorial will demonstrate how to apply a patch in the form of a code fix. This android developers tutorial will be using this tutorial as a real […]

Read more

The android image viewer setting panning bounds tutorial describes how to fix a couple of the main issues from the previous tutorial. Which are The location of the previous pan is not saved which is causing a jittering affect. No limits have been set to panning to the end of the image, therefore the areas outside […]

Read more

The android video app adding record timer tutorial describes how add a timer when recording. This android tutorial shows how to use the android Chronograph view. Which is a simple view to display the elapsed time. The timer will only be displayed when the android video app is recording. Get Code The code to start this […]

Read more