get Photo Pick Intent - Android Intent

Android examples for Intent:Picture Pickup

Description

get Photo Pick Intent

Demo Code


//package com.java2s;

import android.content.Intent;

public class Main {
    public static Intent getPhotoPickIntent() {
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
        intent.setType("image/*");
        return intent;
    }//from  www .  j av a 2  s  . c o m
}

Related Tutorials