Java tutorial
//package com.java2s; //License from project: Apache License import android.net.Uri; import android.text.TextUtils; public class Main { public static Uri getUriFromAsset(String path) { if (TextUtils.isEmpty(path)) { return Uri.parse(""); } else { return Uri.parse("asset:///" + path); } } }