Added in API level 9
  
  
  
  
  
   
  
  
  
  
DownloadManager.Query
  public
  static
  
  
  class
  DownloadManager.Query
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | android.app.DownloadManager.Query | 
This class may be used to filter download manager queries.
Summary
| Public constructors | |
|---|---|
| 
      Query()
       | |
| Public methods | |
|---|---|
| 
        
        
        
        
        
        DownloadManager.Query | 
      setFilterById(long... ids)
      Include only the downloads with the given IDs. | 
| 
        
        
        
        
        
        DownloadManager.Query | 
      setFilterByStatus(int flags)
      Include only downloads with status matching any the given status flags. | 
| Inherited methods | |
|---|---|
Public constructors
Query
public Query ()
Public methods
setFilterById
    Added in API level 9
  
      
  
    public DownloadManager.Query setFilterById (long... ids)
Include only the downloads with the given IDs.
| Parameters | |
|---|---|
| ids | long | 
| Returns | |
|---|---|
| DownloadManager.Query | this object | 
setFilterByStatus
    Added in API level 9
  
      
  
    public DownloadManager.Query setFilterByStatus (int flags)
Include only downloads with status matching any the given status flags.
| Parameters | |
|---|---|
| flags | int: any combination of the STATUS_* bit flags | 
| Returns | |
|---|---|
| DownloadManager.Query | this object | 
