How to Query Android DownloadManager with sorting? -
i trying create custom download activity/page, , plan build on top of android downloadmanager. seems downloadmanager has no public sorting options, sorting stuff hidden, there way around this? i'd sort date, or file size.
thanks,
johnny
in source code can find downloadmanger. query can sorted lastmodifydate. use way extract using source code of downloadmanger , rewrite sorted method.
using this:
appdownloadmanager.query query = new appdownloadmanager.query(); query.setfilterbystatus(appdownloadmanager.status_pending | appdownloadmanager.status_paused | appdownloadmanager.status_running | appdownloadmanager.status_failed); query.orderby(appdownloadmanager.column_id, appdownloadmanager.query.order_descending);
it's first time answer question in stackoverflow , think english poor .tks
Comments
Post a Comment