Business Hours Picker
A business hours picker lib for Android
Want to add a business hours picker and viewer in your application? Try this library !
Support for Android 4.0.3 ( api 19 ) and up
Feel free to fork or issue pull requests on github. Issues can be reported on the github issue tracker.
Installation
Step 1 : Add jitpack to your build.gradle file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2 : Add the dependency
implementation 'com.github.bashizip:business-hours-picker-kt:Tag'
How to use it
First Add the picker and the viewer you want to use in your layout files. The library has 4 main components, 2 Pickers and 2 viewer respectively :
BusinessHoursPicker
Use it to pick a single business day
">
BusinessHoursWeekView
Use it to pick a full week of business days from monday to sunday
">
BusinessHoursView
Use it to display a single business day
">
BusinessHoursWeekView
Use it to display a full week of business days
">
The picker activity of fragment
val bhs = mBusinessHoursWeekView.businessHoursList
The viewer activity or fragment
// Just call the setModel method and it's done !
businessHoursWeekView.setModel(businessHoursList)
See the full sample app for more details.
Potential impovements
* More styling
* Kotlin version (here it is :-) )
Licence
MIT License
Copyright (c) [2019] [Patrick Bashizi]
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.