Socket
Socket
Sign inDemoInstall

io.github.bobbysandhu:unified-date-time-picker

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

io.github.bobbysandhu:unified-date-time-picker

A library to manage Date & Time with a single UI component.


Version published
Maintainers
1
Source

UnifiedDateTimePicker

UnifiedDateTimePicker would help you pick Date and Time with just single UI component. It's inspired & took from Telegram and extended with all the customization to fulfill the needs of any modern app.

Kotlin version of the library is also available here:

https://github.com/BobbySandhu/unified-date-time-picker-kt

Usage

UnifiedDateTimePicker.Builder(this)
            .setTitle("Select Date and Time")
            .addListener(object : OnDateTimeSelectedListener {
                override fun onDateTimeSelected(millis: Long) {
                    val sdf = SimpleDateFormat(DATE_FORMAT_Z, Locale.ROOT)
                    val calendar: Calendar = Calendar.getInstance()
                    calendar.timeInMillis = millis

                    binding.textDateTime.text = sdf.format(calendar.time)
                }

                override fun onPickerDismissed(millis: Long) {
                    /* no use as of now */
                }
            })
            .show();

With default setting it would look like this:

drawing

Customizations

UnifiedDateTimePicker.Builder(this)
            .setTitle("Select Date and Time")
            .titleTextColor(R.color.white)
            .backgroundColor(R.color.big_stone)
            .dateTimeTextColor(R.color.white)
            .buttonColor(R.color.picton_blue)
            .buttonTextColor(R.color.white)
            .vibration(true) // heptic feedback when values are scrolled
            //.setDateTimeMillis(/* long milliseconds*/)
            .addListener(object : OnDateTimeSelectedListener {
                override fun onDateTimeSelected(millis: Long) {
                    val sdf = SimpleDateFormat(DATE_FORMAT_Z, Locale.ROOT)
                    val calendar: Calendar = Calendar.getInstance()
                    calendar.timeInMillis = millis

                    binding.textDateTime.text = sdf.format(calendar.time)
                }

                override fun onPickerDismissed(millis: Long) {
                    /* no use as of now */
                }
            })
            .show();

With all these customizations applied, it would look like:

drawing

Implementation

// Top level build file
repositories {
    // Add this to the end of any existing repositories
    mavenCentral()
}

// app level dependencies section
dependencies {
    implementation 'io.github.bobbysandhu:unified-date-time-picker:1.0.2'
}

Want to extend the feature, have any improvement or bug fix?

You can contribute and help the community. All you need to do is share your PR with clear message. That's it!!

FAQs

Package last updated on 01 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc