Popularity
0.4
Stable
Activity
0.0
Stable
1
1
0

Description

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.

Programming language: Kotlin
Tags: Kotlin     Component     Android     Mobile Development    
Latest version: v1.0.0-beta.2

Business Hours Picker alternatives and similar packages

Based on the "Component" category.
Alternatively, view Business Hours Picker alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Business Hours Picker or a related project?

Add another 'Component' Package

README

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 !

gif

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

<com.bashizip.bhlib.BusinessHoursPicker
    app:dayOfWeek="Monday"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

BusinessHoursWeekView

Use it to pick a full week of business days from monday to sunday

   <com.bashizip.bhlib.BusinessHoursWeekView
    android:id="@+id/bh_view"
    android:layout_width="match_parent"
      android:layout_height="wrap_content"/>

BusinessHoursView

Use it to display a single business day

 <com.bashizip.bhlib.BusinessHourView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

BusinessHoursWeekView

Use it to display a full week of business days

<com.bashizip.bhlib.BusinessHoursWeekView
    android:id="@+id/bh_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

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.


*Note that all licence references and agreements mentioned in the Business Hours Picker README section above are relevant to that project's source code only.