Java tutorial
//package com.java2s; //License from project: Open Source License import android.text.TextUtils; public class Main { public static String preparePathForPicasso(String path) { if (TextUtils.isEmpty(path) || path.contains("https://") || path.contains("http://")) { return path; } return "file:" + path; } }