Movie Booking


Source link: https://github.com/tranngoclam/movie-booking

Movie Booking

This is a simple example for booking movie seats in general movie/film mobile application. The concept is simply combined of State Design Pattern, Android Data Binding and Multibinding + Autofactory below.

In the future, we can extend this concept by using RxJava to handle behavior in only a stream, also chain any stream to process our logic.

Hope it will be useful for anyone who are building this context.

Concept

State Design Pattern

A seat has many states, such as:

  • EMPTY: this is not a seat, just a blank space, it does not have any action.
  • RESERVED: this is a reserved seat, which can not be booked anymore.
  • AVAILABLE: this seat can be book by selecting.
  • SELECTED: this seat is being selected, it can be deselected to be available.

To manage these states, we use State Design Pattern, also for the definition of state action, current state and switching between different states.

  • An available seat can be select to be a selected seat, its state changes from AVAILABLE to SELECTED.
  • A selected seat can be deselected to be an available seat, its state changes from SELECTED to AVAILABLE

Android Data Binding

For any state changes, we update the UI of the seat correspondingly by using @BindingAdapter and @Bindable annotations defined in Android Data Binding. Example:

  • In a layout of a seat, we bind a state value to UI by: app:state="@{ data.state } ".
  • A state defined in Java code is: @Bindable State mState; and must have getter public State getState() { return mState; } .
  • If we want to seatChange the state and update to the UI, we set mState = new NewState(); then notifyPropertyChanged(BR.state); , noted that BR.state is generated after building our application.

Multibinding and Autofactory

For the Dependency Injection, we use Dagger2 to setup. Dagger2 also supports Multibinding, it means that we can inject any ViewHolder into our adapter to render the corresponding layout of an item in a list.

By using Autofactory, we construct some ViewHolders and provide these factory in a module. These factory must go with a key defined by @IntKey, which is an item view type. Example:

@Provides @IntoMap @IntKey(Seat.Type.AVAILABLE) SeatViewHolderFactory provideAvailableSeatViewHolder() {

return new AvailableSeatViewHolderFactory();
 
}
public interface SeatViewHolderFactory {

SeatViewHolder createViewHolder(ViewDataBinding binding);
 
}
@Override public SeatViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

ItemSeatBinding binding = DataBindingUtil.inflate(LayoutInflater.from(parent.getContext()), R.layout.item_seat, parent, false);

return mSeatViewHolderFactoryMap.get(viewType).createViewHolder(binding);
 
}

TODO

  • Write Unit Test to verify any action from the views.
  • Support selecting many seats and handle exception if the selection reaches the maximum.
  • Try to use RxJava to extend the concept.

References

License

MIT License  Copyright (c) 2017 Lam Tran ([email protected])  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

RxJava wrapper for Google Drive Android API.

Android library to create and manage simple rating views with stars.

yasea is an RTMP streaming client in pure Java for Android for those who hate JNI development.

WaspDB is a pure Java key/value (NoSQL) database library for Android. It supports AES256 encryption for all the disk storage.

This library is an enhancement to the TextView component that allows you to style various spans of text inside the view.

Parrot is a gradle plugin that allows your app to speak multiple languages, without the hassle of working with multiple resources, using the translation editor or ordering an expensive translation from AS/IDEA

It leverages the Google Translate API in order to translate your string resources into all the languages specified in the configuration.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes