Rxdatetimepicker

Alternatives To Rxdatetimepicker
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Sunrisesunsetlib Java2525216 years ago2December 17, 201425apache-2.0Java
Library for computing the sunrise/sunset from GPS coordinates and a date, in Java.
Androideasyutils23
5 years agomitJava
AndroidEasyUtils is a simple android library that contains some utils method which is much more needed when working in any android project. Categories are - Validators, Dialog, Progress Dialog, Connectivity, Date Time, Bitmaps, HashMap and Others.
Ruby Serialgps14
6 years ago3Ruby
Provides an easy API to get GPS data from your serial GPS module.
Kgeotag7
14 days agogpl-3.0C++
Photo geotagging program
Gmaxfeed7
2 days agogpl-3.0Python
python3 module for downloading and maintaining files from gmax server on local machine.
Rxdatetimepicker5
2 years agoJava
Earthquakewatchdog4
3 days ago41Kotlin
App showing the latest hearthquake event from USGS site.
Pictureorganizer4
6 years agogpl-3.0Shell
Automatically organizes pictures and videos based on taken dates and GPS coordinates.
Appsmazdainfotainement3
3 years agomitJavaScript
Applications Mazda
Fcsprojectairmap_ios3
7 years agoC++
iOS for FCSProjectAirMap
Alternatives To Rxdatetimepicker
Select To Compare


Alternative Project Comparisons
Readme

RxDateTimePicker

RxJava wrapper for date and time pickers.

||||

Installation

Download

dependencies {
    implementation 'com.sha.kamel:rx_date_time_picker:1.0.0@aar'
}

Usage:

RxDatePicker

RxTimePicker.newInstance()  
        .show(getSupportFragmentManager())  
        .asObservable()  
        .subscribe(timeInfo -> {  
            String msg = timeMessage(timeInfo);  
            tv_date.setText(msg);  
  });

RxTimePicker

RxDatePicker.newInstance()  
        .minDate(System.currentTimeMillis() - (4 * 24 * 60 * 60 * 1000)) // 4 days  
        .maxDate(System.currentTimeMillis() + (4 * 24 * 60 * 60 * 1000))  
        .show(getSupportFragmentManager())  
        .asObservable()  
        .subscribe(dateInfo -> {  
            String msg = dateMessage(dateInfo);  
            tv_time.setText(msg);  
  });

RxDateTimePicker

RxDateTimePicker.newInstance()  
        .minDate(System.currentTimeMillis() - (4 * 24 * 60 * 60 * 1000)) // 4 days  
        .maxDate(System.currentTimeMillis() + (4 * 24 * 60 * 60 * 1000))  
        .show(getSupportFragmentManager())  
        .asObservable()  
        .subscribe(dateTimeInfo -> {  
                    String msg = new StringBuilder()  
                            .append(dateMessage(dateTimeInfo.getDateInfo()))  
                            .append("\n")  
                            .append(timeMessage(dateTimeInfo.getTimeInfo()))  
                            .toString();  
                    tv_dateTime.setText(msg);});

See 'app' module for the full code.

License

Apache license 2.0

Popular Date Projects
Popular Gps Projects
Popular Libraries Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Java 8
Date
Gps
Rxjava2
Rxjava
Datetime
Datepicker
Timepicker
Datetimepicker