Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;

public class Main {
    private static Intent pickVideoIntent() {
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        intent.setType("video/*"); // String VIDEO_UNSPECIFIED = "video/*";
        // Intent wrapperIntent = Intent.createChooser(innerIntent, null);
        return intent;
    }
}