Skip to content

Commit

Permalink
Merge pull request #12 from rogerhu/fix
Browse files Browse the repository at this point in the history
Update to JobIntentService
  • Loading branch information
nesquena authored Mar 5, 2018
2 parents 07d5047 + a4e28ee commit 2e0cfd1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

This is an Android demo for services and notifications including:

* Using an IntentService
* Communicating between IntentService and Activity using ResultReceiver
* Using a JobIntentService
* Communicating between JobIntentService and Activity using ResultReceiver
* Using AlarmManager
* Downloading Image Asynchronously with ImageDownloadService

Expand All @@ -15,18 +15,18 @@ Read more in our cliffnotes at [Services](https://github.com/thecodepath/android

## Use Cases

**Simple IntentService**
**Simple JobIntentService**

* Use case #1: Demo a simple intent service, sleep, then toast using ResultReceiver
* Use case #2: Demo a simple intent service, sleep, then display in Notification Center (first builder example)
* Use case #1: Demo a simple job intent service, sleep, then toast using ResultReceiver
* Use case #2: Demo a simple job intent service, sleep, then display in Notification Center (first builder example)
* Use case #3: Upon clicking on a notification, go to a particular activity and display the notification information

**ImageDownloadService**

* Use case #4: Demo a long download with a 10 second sleep. Close the app, display in Notification Center when done.
* Use case #5: Show the downloaded image in the expansion view within notification.

**AlarmManager for Simple IntentService**
**AlarmManager for Simple JobIntentService**

* Use case #6: An AlarmManager fires a message that will be displayed in Notification Center
* Use case #7: Demonstrated “stacked notifications” in a repeating alarm that updates the existing notification.

0 comments on commit 2e0cfd1

Please sign in to comment.