FileDocCategorySizeDatePackage
Downloads.javaAPI DocAndroid 5.1 API32360Thu Mar 12 22:22:10 GMT 2015android.provider

Downloads

public final class Downloads extends Object
The Download Manager
pending

Fields Summary
private static final String
QUERY_WHERE_CLAUSE
Query where clause for general querying.
Constructors Summary
private Downloads()

Methods Summary
public static final voidremoveAllDownloadsByPackage(android.content.Context context, java.lang.String notification_package, java.lang.String notification_class)
Delete all the downloads for a package/class pair.


                 
        
                  
        context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,
                new String[] { notification_package, notification_class });