Skip to content

rey-riverita/NYTimes-Search-App

Repository files navigation

Project 2 - New York Times Article Searcher

New York Times Article Searcher is an android app that allows a user to search for articles on web using simple filters. The app utilizes New York Times Search API.

Time spent: 30 hours spent in total

User Stories

The following required functionality is completed:

  • User can search for news article by specifying a query and launching a search. Search displays a grid of image results from the New York Times Search API.
  • User can scroll down to see more articles. The maximum number of articles is limited by the API search.
  • User can tap on any image in results to see the full text of article full-screen

The following optional features are implemented:

  • Used the ActionBar SearchView or custom layout as the query box
  • User can share an article link to their friends or email it to themselves
  • Improved the user interface and experiment with image assets and/or styling and coloring
  • User can click on "settings" which allows selection of advanced search options to filter results
    • User can configure advanced search filters such as:
      • Begin Date (using a date picker)
      • News desk values (Arts, Fashion & Style, Sports)
      • Sort order (oldest or newest)
    • Subsequent searches have any selected filters applied to the results
    • Uses a lightweight modal dialog for filters rather than an activity
  • Replaces the default ActionBar with a Toolbar.
  • Apply the popular Butterknife annotation library to reduce view boilerplate.
  • Replace GridView with the RecyclerView and the StaggeredGridLayoutManager to improve the grid of image results displayed.
  • Use Parcelable instead of Serializable leveraging the popular Parceler library.
  • Replace Picasso with Glide for more efficient image rendering.
  • Before an article search is triggered by the user, displays the current top stories of the day by default.
  • Hides the Toolbar at the top as the user scrolls down through the results using the CoordinatorLayout and AppBarLayout.
  • Leverage the popular GSON library to streamline the parsing of JSON data and avoid manual parsing.

The following additional features are implemented: Placeholders are shown while article images load.

  • List anything else that you can get done to improve the app functionality!

Make the spinner not reset to "Newest" value by default every time you tap/click to view the filter activity. "Save changes" to each filter so that if other filters are applied after browsing articles, they will display the values they were set to last time filters were applied.

Video Walkthrough

Here's a walkthrough of implemented user stories:

Video Walkthrough

GIF created with LiceCap.

Notes

Describe any challenges encountered while building the app. Implementing the filters was by far the most difficult task I reached throughout the development of this app. It was difficult to pass around the filter object via intents and modify it so that the url string would append certain strings based on which filters were selected. I logged the status of the url each time I selected different filters and found that it works, but I was never able to make it "look" like they were selected. Implementing the endless scrolling was also a troubling task because I had never worked with abstract classes before.

Open-source libraries used

  • Android Async HTTP - Simple asynchronous HTTP requests with JSON parsing
  • Picasso - Image loading and caching library for Android

License

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Search for NYTimes articles and apply filters

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages