Here you can find the source of isDownloadsDocument(Uri uri)
Parameter | Description |
---|---|
uri | The Uri to check. |
public static boolean isDownloadsDocument(Uri uri)
//package com.java2s; import android.net.Uri; public class Main { /**// w w w.ja va 2 s .c o m * @param uri The Uri to check. * @return Whether the Uri authority is DownloadsProvider. */ public static boolean isDownloadsDocument(Uri uri) { return "com.android.providers.downloads.documents".equals(uri .getAuthority()); } }