我使用Android的本地DownloadManager API进行了长期下载。我已经在AndroidManifest.xml中注册了广播接收器,例如:
<receiver
android:name=".services.DownloadNotificationClickedReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
</intent-filter>
</receiver>
现在,我想知道:在DownloadNotificationClickedReceiver
类中,如果用户将应用程序置于后台,我将如何请求我的应用程序(仅)运行,以及如何指定应运行的活动(我的下载活动) )。