Android examples for android.provider:MediaStore
is External Storage Document
import android.net.Uri; public class Main{ /**/*from ww w. j a v a 2 s.com*/ * @param uri The Uri to check. * @return Whether the Uri authority is ExternalStorageProvider. * @author paulburke */ public static boolean isExternalStorageDocument(Uri uri) { return "com.android.externalstorage.documents".equals(uri .getAuthority()); } }