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.net.Uri;

public class Main {
    private static String YOUTUBE_PLAY_BASE_URL = "https://www.youtube.com/watch";
    private static String YOUTUBE_VIDEO_KEY_PARAM = "v";

    public static Intent getYoutubeTrailerIntent(String videoKey) {
        Uri videoUri = Uri.parse(YOUTUBE_PLAY_BASE_URL).buildUpon()
                .appendQueryParameter(YOUTUBE_VIDEO_KEY_PARAM, videoKey).build();
        return new Intent(Intent.ACTION_VIEW, videoUri);
    }
}