Android examples for Intent:Picture Pickup
get Photo Pick Intent
//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 }