Last active
January 17, 2025 22:16
-
-
Save bikashthapa01/367c2b06629843d78402d8ae4ae927ff to your computer and use it in GitHub Desktop.
Capture Image From Camera and Display in Image view as well as Gallery in Android Tutorials
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
tools:context=".MainActivity"> | |
<ImageView | |
android:id="@+id/displayImageView" | |
android:layout_width="300dp" | |
android:layout_height="300dp" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintEnd_toEndOf="parent" | |
app:layout_constraintStart_toStartOf="parent" | |
app:layout_constraintTop_toTopOf="parent" | |
app:layout_constraintVertical_bias="0.23000002" | |
app:srcCompat="@drawable/ic_launcher_background" /> | |
<Button | |
android:id="@+id/cameraBtn" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_marginTop="40dp" | |
android:text="Camera" | |
app:layout_constraintEnd_toEndOf="parent" | |
app:layout_constraintHorizontal_bias="0.33" | |
app:layout_constraintStart_toStartOf="parent" | |
app:layout_constraintTop_toBottomOf="@+id/displayImageView" /> | |
<Button | |
android:id="@+id/galleryBtn" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_marginStart="16dp" | |
android:text="Gallery" | |
app:layout_constraintBottom_toBottomOf="@+id/cameraBtn" | |
app:layout_constraintStart_toEndOf="@+id/cameraBtn" | |
app:layout_constraintTop_toTopOf="@+id/cameraBtn" /> | |
</androidx.constraintlayout.widget.ConstraintLayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<paths> | |
<external-path | |
name="external" | |
path="." /> | |
<external-files-path | |
name="external_files" | |
path="." /> | |
<cache-path | |
name="cache" | |
path="." /> | |
<external-cache-path | |
name="external_cache" | |
path="." /> | |
<files-path | |
name="files" | |
path="." /> | |
</paths> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.smallacademy.cameraandgallery; | |
import androidx.annotation.NonNull; | |
import androidx.annotation.Nullable; | |
import androidx.appcompat.app.AppCompatActivity; | |
import androidx.core.app.ActivityCompat; | |
import androidx.core.content.ContextCompat; | |
import androidx.core.content.FileProvider; | |
import android.Manifest; | |
import android.app.Activity; | |
import android.content.ContentResolver; | |
import android.content.Intent; | |
import android.content.pm.PackageManager; | |
import android.graphics.Bitmap; | |
import android.net.Uri; | |
import android.os.Bundle; | |
import android.os.Environment; | |
import android.provider.MediaStore; | |
import android.util.Log; | |
import android.view.View; | |
import android.webkit.MimeTypeMap; | |
import android.widget.Button; | |
import android.widget.ImageView; | |
import android.widget.Toast; | |
import java.io.File; | |
import java.io.IOException; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
public class MainActivity extends AppCompatActivity { | |
public static final int CAMERA_PERM_CODE = 101; | |
public static final int CAMERA_REQUEST_CODE = 102; | |
public static final int GALLERY_REQUEST_CODE = 105; | |
ImageView selectedImage; | |
Button cameraBtn,galleryBtn; | |
String currentPhotoPath; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
selectedImage = findViewById(R.id.displayImageView); | |
cameraBtn = findViewById(R.id.cameraBtn); | |
galleryBtn = findViewById(R.id.galleryBtn); | |
cameraBtn.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
askCameraPermissions(); | |
} | |
}); | |
galleryBtn.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { | |
Intent gallery = new Intent(Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI); | |
startActivityForResult(gallery, GALLERY_REQUEST_CODE); | |
} | |
}); | |
} | |
private void askCameraPermissions() { | |
if(ContextCompat.checkSelfPermission(this,Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED){ | |
ActivityCompat.requestPermissions(this,new String[] {Manifest.permission.CAMERA}, CAMERA_PERM_CODE); | |
}else { | |
dispatchTakePictureIntent(); | |
} | |
} | |
@Override | |
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { | |
if(requestCode == CAMERA_PERM_CODE){ | |
if(grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED){ | |
dispatchTakePictureIntent(); | |
}else { | |
Toast.makeText(this, "Camera Permission is Required to Use camera.", Toast.LENGTH_SHORT).show(); | |
} | |
} | |
} | |
@Override | |
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { | |
if(requestCode == CAMERA_REQUEST_CODE){ | |
if(resultCode == Activity.RESULT_OK){ | |
File f = new File(currentPhotoPath); | |
selectedImage.setImageURI(Uri.fromFile(f)); | |
Log.d("tag", "ABsolute Url of Image is " + Uri.fromFile(f)); | |
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); | |
Uri contentUri = Uri.fromFile(f); | |
mediaScanIntent.setData(contentUri); | |
this.sendBroadcast(mediaScanIntent); | |
} | |
} | |
if(requestCode == GALLERY_REQUEST_CODE){ | |
if(resultCode == Activity.RESULT_OK){ | |
Uri contentUri = data.getData(); | |
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); | |
String imageFileName = "JPEG_" + timeStamp +"."+getFileExt(contentUri); | |
Log.d("tag", "onActivityResult: Gallery Image Uri: " + imageFileName); | |
selectedImage.setImageURI(contentUri); | |
} | |
} | |
} | |
private String getFileExt(Uri contentUri) { | |
ContentResolver c = getContentResolver(); | |
MimeTypeMap mime = MimeTypeMap.getSingleton(); | |
return mime.getExtensionFromMimeType(c.getType(contentUri)); | |
} | |
private File createImageFile() throws IOException { | |
// Create an image file name | |
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); | |
String imageFileName = "JPEG_" + timeStamp + "_"; | |
// File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES); | |
File storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); | |
File image = File.createTempFile( | |
imageFileName, /* prefix */ | |
".jpg", /* suffix */ | |
storageDir /* directory */ | |
); | |
// Save a file: path for use with ACTION_VIEW intents | |
currentPhotoPath = image.getAbsolutePath(); | |
return image; | |
} | |
private void dispatchTakePictureIntent() { | |
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); | |
// Ensure that there's a camera activity to handle the intent | |
if (takePictureIntent.resolveActivity(getPackageManager()) != null) { | |
// Create the File where the photo should go | |
File photoFile = null; | |
try { | |
photoFile = createImageFile(); | |
} catch (IOException ex) { | |
} | |
// Continue only if the File was successfully created | |
if (photoFile != null) { | |
Uri photoURI = FileProvider.getUriForFile(this, | |
"net.smallacademy.android.fileprovider", | |
photoFile); | |
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI); | |
startActivityForResult(takePictureIntent, CAMERA_REQUEST_CODE); | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="net.smallacademy.cameraandgallery"> | |
<uses-permission android:name="android.permission.CAMERA"/> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" | |
android:theme="@style/AppTheme"> | |
<activity android:name=".MainActivity"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<provider | |
android:name="androidx.core.content.FileProvider" | |
android:authorities="net.smallacademy.android.fileprovider" | |
android:exported="false" | |
android:grantUriPermissions="true"> | |
<meta-data | |
android:name="android.support.FILE_PROVIDER_PATHS" | |
android:resource="@xml/file_paths"></meta-data> | |
</provider> | |
</application> | |
</manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<uses-permission android:name="android.permission.CAMERA"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Helpfull