Difference between revisions of "Mobile App Dev 2021W: Assignment 4"

From Soma-notes
Jump to navigation Jump to search
Line 9: Line 9:
<li>[4] Add a title screen with a continue button.  The title should be "Picture Viewer Demo".  When the title screen's continue button is pressed the main activity should be shown.</li>
<li>[4] Add a title screen with a continue button.  The title should be "Picture Viewer Demo".  When the title screen's continue button is pressed the main activity should be shown.</li>
<li>[4] Add the name of the picture as a title above the image, centered.  It should be in a Body3 bold font.  You'll need to assign each picture a name.</li>
<li>[4] Add the name of the picture as a title above the image, centered.  It should be in a Body3 bold font.  You'll need to assign each picture a name.</li>
<li>[4] When you click on the image title, have it open up a DuckDuckGo image search for that title in the system web browser.  We can do this with a specially crafted URL.  For example, if the image title is kittens, we can initiate the search by visiting the page https://duckduckgo.com/?q=kittens&iax=images&ia=images   
<li>[2] When you click on the image title, have it open up a DuckDuckGo image search for that title in the system web browser.  We can do this with a specially crafted URL.  For example, if the image title is kittens, we can initiate the search by visiting the page https://duckduckgo.com/?q=kittens&iax=images&ia=images   
<li>[4] Add a touch event handler that allows the picture to be dragged to different positions on the screen.  As the image is moved the X and Y fields should be updated.</li>
<li>[4] Add a touch event handler that allows the picture to be dragged to different positions on the screen.  As the image is moved the X and Y fields should be updated.</li>
<li></li>
<li></li>
</ol>
</ol>

Revision as of 22:23, 1 April 2021

This assignment is still being developed.

In this assignment you will be further analyzing and adding features to PicViewer2.zip from Tutorial 8. This assignment is due on April 12, 2021 at 11:30 AM. Please submit your answers via cuLearn using this template.

Tasks/Questions

  1. [2] Remove the title bar from the screens. Make sure your solution works for both light and dark modes.
  2. [4] Add a title screen with a continue button. The title should be "Picture Viewer Demo". When the title screen's continue button is pressed the main activity should be shown.
  3. [4] Add the name of the picture as a title above the image, centered. It should be in a Body3 bold font. You'll need to assign each picture a name.
  4. [2] When you click on the image title, have it open up a DuckDuckGo image search for that title in the system web browser. We can do this with a specially crafted URL. For example, if the image title is kittens, we can initiate the search by visiting the page https://duckduckgo.com/?q=kittens&iax=images&ia=images
  5. [4] Add a touch event handler that allows the picture to be dragged to different positions on the screen. As the image is moved the X and Y fields should be updated.