Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.net.Uri;

public class Main {
    public static boolean isOnlineVideo(Uri uri) {
        if (uri == null) {
            return false;
        }
        String scheme = uri.getScheme();
        if (scheme != null && (scheme.equals("http") || scheme.equals("https") || scheme.equals("rtsp"))) {
            return true;
        }
        String path = uri.toString();
        if (path != null && path.contains("app_smb")) {
            return true;
        }
        return false;
    }
}