This is an app that allows the user to browse through the latest movies This shows the basic layout of the app
This is The Movie Details Layout
The MovieDB API was used to gather all the information
- Android Studio
- TheMovieDB API key
- Frameworks - Retrofit, RxJava(Kotlin)
Retrofit is a REST Client for Java and Android. It makes it relatively easy to retrieve and upload JSON (or other structured data) via a REST based webservice. In Retrofit you configure which converter is used for the data serialization.
RxJava is a Java VM implementation of ReactiveX a library for composing asynchronous and event-based programs by using observable sequences. The building blocks of RxJava are Observables and Subscribers. ... For example, Observables often don't start emitting items until someone subscribes to them.
HTTP is the way modern applications network. It’s how we exchange data & media. Doing HTTP efficiently makes your stuff load faster and saves bandwidth.
Glide is an Image Loader Library for Android developed by bumptech and is a library that is recommended by Google. It has been used in many Google open source projects including Google I/O 2014 official application. It provides animated GIF support and handles image loading/caching.
//Glide
implementation 'com.github.bumptech.glide:glide:4.10.0'
//Retrofit
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.0'
implementation 'com.squareup.retrofit2:retrofit:2.7.0'
//Gson
implementation 'com.squareup.retrofit2:converter-gson:2.7.0'
implementation 'com.google.code.gson:gson:2.8.5'
//OkHttp
implementation "com.squareup.okhttp3:okhttp:4.3.1"
//RxJava and RxAndroid
implementation 'io.reactivex.rxjava2:rxjava:2.2.12'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
Create a folder named util and Kotlin file Constants.kt It will keep your API Key and Base URL for the App
Enter your generated API Key at the place shown in the picture
Run...
Paginating added - user can now browse all the movies from the source
New Categories Added - Now user can browse
- Popular Movies
- Upcoming Movies
- Movies in theaters
- Top Rated Movies
Added Home Button to browsing pages