Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link the DownloadActivity file #54

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ public void handleMessage(Message msg) {
// TODO - You fill in here to display the image
// bitmap that's been downloaded and returned to
// the DownloadActivity as a pathname that's named
// "PATHNAME".
// "PATHNAME". Use the displayBitmap(pathname) to
// display the image.
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ protected void onHandleIntent (Intent intent) {
// TODO - You fill in here with a call the appropriate helper
// method from the DownloadUtils class that downloads the uri
// in the intent and returns the file's pathname using a
// Messenger that's named "MESSENGER".
// Messenger that's named "MESSENGER". This message will be
// processed in the MessengerHandler class, defined in the
// DownloadActivity.java file.
}
}