Java tutorial
//package com.java2s; import android.net.Uri; public class Main { static String ANDROID_ASSET_PREFIX = "/android_asset/"; public static boolean isAssetUri(Uri paramUri) { if ((paramUri.getScheme().equals("file")) && (paramUri.getPath().startsWith(ANDROID_ASSET_PREFIX))) { } for (boolean bool = true;; bool = false) { return bool; } } }