Posts

Showing posts from November, 2025

Take Picture with Camera Intent - Android Studio - Compose

Image
📸 Take Picture with Camera Intent in Android Studio (Compose) — Complete Guide Learn how to capture images using the  Camera Intent  in Android Studio with  Compose . This step-by-step tutorial covers everything you need to implement a built-in camera feature in your Android app. You’ll understand how to open the camera, handle permissions, save the captured image, and display it inside your application. Whether you’re a beginner or an experienced Android developer, this guide will help you integrate camera functionality quickly and efficiently using clean and simple Java code. What this post covers: Requesting camera permissions Launching the Camera Intent Receiving the captured image Displaying and saving the photo Common errors & their solutions Perfect for Android developers building apps that require image capturing features such as profile photos, scanning, media apps, and more. >>  Check For Java >>  Check For Kotlin >>  Check ...

Pick Multiple Images from the Gallery - Android Studio - Compose

Image
How to pick multiple images from the Gallery? There are some scenarios in which we need to pick multiple images from the  Gallery . For example, on  Facebook,  you are familiar with adding multiple images in a single Post. In this tutorial, we will learn how can upload multiple images from the  Gallery . You can pick single or as well as multiple images after learning this tutorial. After picking images, we will show those images in  ImageSwitcher . If you want to learn to pick a single Image from the Gallery, you can check for  Java  OR  Kotlin  OR  Compose >>  Check For Java >>  Check For Kotlin >>  Check For Compose Code MainActivity.kt package com.technifysoft.myapplication import android.net.Uri import android.os.Bundle import android.widget.Toast import androidx.activity.ComponentActivity import androidx.activity.compose.rememberLauncherForActivityResult import androidx.activity.compos...

Pick an Image from the Gallery – Android Studio - Compose

Image
How to Pick an Image from the Gallery? In this tutorial, we will walk through the complete process of selecting an image from the device’s Gallery in an Android application. This feature is commonly used in many modern apps—for uploading profile pictures, choosing photos for posts, or attaching images to forms. We will start by creating a simple layout with a button that the user can tap to open the Gallery. Once the button is clicked, the system’s built-in image picker will appear, allowing the user to browse their photo library and select a single image. After the user chooses an image, we will retrieve its URI and display it inside an  ImageView  within our app. >> Check for Java >> Check for Kotlin >> Check for Compose Code: MainActivity.java package com.technifysoft.myapplication import android.net.Uri import android.os.Bundle import android.widget.Toast import androidx.activity.ComponentActivity import androidx.activity.compose.rememberLaunc...

Picture In Picture - Android Studio - Compose

Image
How to add Picture In Picture Mode in the Android app? Android 8.0 (API level 26) allows activities to launch in the picture-in-picture (PIP) mode. PIP is a special type of multi-window mode mostly used for video playback. It lets the user watch a video in a small window pinned to a corner of the screen while navigating between apps or browsing content on the main screen. The PIP window appears in the top layer of the screen in a corner chosen by the system. >> Check For Java >> Check For Kotlin >> Check For Compose Step 1: Create a new project   OR   Open your project Step 2: Create another activity named PIPActivity Step 3: Add the following properties to the PIPActivity in AndroidManifest <activity android:name= ".PIPActivity" android:configChanges= "screenSize|smallestScreenSize|screenLayout|orientation" android:launchMode= "singleTask" android:resizeableActivity= "true" ...