Here you can find the source of isExternalStorageDocument(Uri uri)
Parameter | Description |
---|---|
uri | The Uri to check. |
public static boolean isExternalStorageDocument(Uri uri)
//package com.java2s; import android.net.Uri; public class Main { /**/*from ww w .jav a 2s. c o m*/ * @param uri The Uri to check. * @return Whether the Uri authority is ExternalStorageProvider. */ public static boolean isExternalStorageDocument(Uri uri) { return "com.android.externalstorage.documents".equals(uri .getAuthority()); } }