Introduction The android media viewer full screen image tutorial series describes how to load a full screen version of the image thumbnail in a new activity. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-viewer-full-image or you can run this command git clone https://github.com/mobapptuts/media-thumbnail-viewer.git –branch media-viewer-full-image This video […]

Read more

Introduction The android media viewer enabling image click tutorial series describes how to add an onClickListener to the image thumbnail inside the adapter. The onClickListener will be used to pass the Uri of the image or video back to the calling activity. Get Code The code can be found on github from the following instructions […]

Read more

Introduction The android media viewer glide video thumb tutorial series describes how to generate and display the video thumbnails along with the image thumbnails. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-viewer-recyclerview or you can run this command git clone https://github.com/mobapptuts/media-thumbnail-viewer.git –branch media-viewer-recyclerview This video describes how […]

Read more

The android video app updating media store tutorial describes how to notify the MediaStore when the app has captured a new image or video. This is important for other applications such as the mediastore viewer to be able to load and display the most recent capture image or video. Get Code The code to start this […]

Read more

Introduction The android media viewer adding RecyclerView tutorial series describes how to add the RecyclerView to the android application. The RecyclerView will be the mechanism for laying out the thumbnails on the display. The RecyclerView will also be using a GridLayoutManager to displaying the images in a grid layout.  The MediaStoreAdapter will also have to be […]

Read more

Introduction The android media viewer cursor loader tutorial series describes how to implement android cursor loaders to the app. A cursor loader is a convenient way to query the MediaStore and have a Cursor returned while running in a background thread. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-viewer-cursor-loader […]

Read more

Introduction The android media viewer adapter cursor tutorial describes how to add cursor support in the RecyclerView adapter. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-store-adapter-cursor or you can run this command git clone https://github.com/mobapptuts/media-thumbnail-viewer.git –branch media-store-adapter-cursor This video describes how to import the code from github […]

Read more

Introduction The android media viewer recyclerview adapter tutorial series describes how to create the adapter which will provide the mediastore thumbnail images to the recyclerview. This tutorial will just describe creating the bare implementation of the RecyclerView adapter. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-viewer-adapter or you […]

Read more

Introduction The Android media viewer read permission tutorial series describes how to implement permission to access external read storage for both marshmallow devices and older. Get Code The code can be found on github from the following instructions below https://github.com/mobapptuts/media-thumbnail-viewer.git Tag media-viewer-permissions or you can run this command git clone https://github.com/mobapptuts/media-thumbnail-viewer.git –branch media-viewer-permissions This video describes how […]

Read more

The android video app time lapse tutorial describes how to add record video in time lapse format. In the android camera2 api video application we will be implementing a long click listener to be used for the time-lapse mode. Stopping time-lapse recording will be the same as recording, by just pressing the record button. Get Code The […]

Read more