Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Sunrisesunsetlib Java | 252 | 52 | 1 | 6 years ago | 2 | December 17, 2014 | 25 | apache-2.0 | Java | |
Library for computing the sunrise/sunset from GPS coordinates and a date, in Java. | ||||||||||
Androideasyutils | 23 | 5 years ago | mit | Java | ||||||
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 Serialgps | 14 | 6 years ago | 3 | Ruby | ||||||
Provides an easy API to get GPS data from your serial GPS module. | ||||||||||
Kgeotag | 7 | 14 days ago | gpl-3.0 | C++ | ||||||
Photo geotagging program | ||||||||||
Gmaxfeed | 7 | 2 days ago | gpl-3.0 | Python | ||||||
python3 module for downloading and maintaining files from gmax server on local machine. | ||||||||||
Rxdatetimepicker | 5 | 2 years ago | Java | |||||||
Earthquakewatchdog | 4 | 3 days ago | 41 | Kotlin | ||||||
App showing the latest hearthquake event from USGS site. | ||||||||||
Pictureorganizer | 4 | 6 years ago | gpl-3.0 | Shell | ||||||
Automatically organizes pictures and videos based on taken dates and GPS coordinates. | ||||||||||
Appsmazdainfotainement | 3 | 3 years ago | mit | JavaScript | ||||||
Applications Mazda | ||||||||||
Fcsprojectairmap_ios | 3 | 7 years ago | C++ | |||||||
iOS for FCSProjectAirMap |
||
|
|
dependencies {
implementation 'com.sha.kamel:rx_date_time_picker:1.0.0@aar'
}
RxTimePicker.newInstance()
.show(getSupportFragmentManager())
.asObservable()
.subscribe(timeInfo -> {
String msg = timeMessage(timeInfo);
tv_date.setText(msg);
});
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.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);});