Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 3.01 KB

README.md

File metadata and controls

55 lines (43 loc) · 3.01 KB

Popular-Movie

Udacity Android Developer Nanodegree Project

Project Overview

Most of us can relate to kicking back on the couch and enjoying a movie with friends and family. In this project, I build an app to allow users to discover the most popular movies playing. We will split the development of this app in two stages. First, let's talk about stage 1.

In this stage I build the core experience of your movies app.

This app will:

  • Present the user with a grid arrangement of movie posters upon launch.
  • Allow your user to change sort order via a setting:
    • The sort order can be by most popular or by highest-rated
  • Allow the user to tap on a movie poster and transition to a details screen with additional information such as:
    • original title
    • movie poster image thumbnail
    • A plot synopsis (called overview in the api)
    • user rating (called vote_average in the api)
    • release date
    • allow users to view and play trailers ( either in the youtube app or a web browser).
    • allow users to read reviews of a selected movie.
    • also allow users to mark a movie as a favorite in the details view by tapping a button(star).
    • create a database to store the names and ids of the user's favorite movies (and optionally, the rest of the information needed to display their favorites collection while offline).
    • modify the existing sorting criteria for the main view to include an additional pivot to show their favorites collection.

    Screens

screen

screen

screen

screen

Libraries

Why this Project?

To become an Android developer, you must know how to bring particular mobile experiences to life. Specifically, you need to know how to build clean and compelling user interfaces (UIs), fetch data from network services, and optimize the experience for various mobile devices. You will hone these fundamental skills in this project.

By building this app, you will demonstrate your understanding of the foundational elements of programming for Android. Your app will communicate with the Internet and provide a responsive and delightful user experience.

What I Learned through this Project?

  • How to fetch data from the Internet with theMovieDB API.
  • How to use adapters and custom list layouts to populate list views.
  • How to incorporate libraries to simplify the amount of code you need to write