Android examples for android.hardware:Photo
get Photo Pick Intent
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 a va 2s. c o m }