Subscribing or binding to an existing Intent service
问题 I have an app that has an initial activty that list some files within a list view. When an item is clicked within the list it takes you to a detail activity of that specific file. In the detail view I have a button called download, when you click on download it starts a IntentService which sets off the file to be downloaded as such: downloadButton.setOnClickListener(new OnClickListener() { public void onClick(View v) { Intent intent = new Intent(AppDetailsActivity.this, AppDownloadService