Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;

import android.provider.MediaStore;
import android.support.v4.app.Fragment;

public class Main {
    public static void pickImageFromPhotoForFragment(Fragment fragment, int requestCode) {

        Intent intent = new Intent(Intent.ACTION_PICK, null);
        intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*");
        fragment.startActivityForResult(intent, requestCode);

    }
}