An Android app that allows users to search for movies and view their ratings and poster images by querying the OMDb API.
🛠 Key Features:
🎬 Search for Movies
- Users can search for a movie by entering the movie's name in an EditText field.
- The app queries the OMDb API to retrieve information about the movie.
⭐ Display Ratings
- After a successful query, the app displays the movie’s ratings fetched from the API.
- Ratings are presented in a TextView, with the source and value shown.
🖼 Display Movie Poster
- If the movie has a valid poster URL, the app loads and displays the movie's poster image using Picasso.
- A placeholder is shown while the image is being loaded.
🚫 Error Handling
- The app handles errors by showing a Toast message if the movie cannot be found or there is an issue with the API response.
📚 Libraries Used:
🌐 Volley
- Used for making network requests and handling API responses.
- JsonObjectRequest is used to request JSON data from the OMDb API.
🖼 Picasso