Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.app.Activity;
import android.content.Context;
import android.content.Intent;

public class Main {
    public static int REQUEST_CHOOSE = 2;

    public static void choosePicture(Context context) {
        Intent intent3 = new Intent();
        intent3.setType("image/*");
        intent3.setAction(Intent.ACTION_GET_CONTENT);
        ((Activity) context).startActivityForResult(intent3, REQUEST_CHOOSE);
    }
}