take Picture via Intent - Android Intent

Android examples for Intent:Take Picture

Description

take Picture via Intent

Demo Code


//package com.java2s;

import android.content.Intent;

import android.net.Uri;

import android.provider.MediaStore;

public class Main {

    public static Intent takePicture(Uri uri) {
        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
        return intent;
    }//from w w w.  j a  v  a  2s  . c  o m
}

Related Tutorials