Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bendemboski/DateSlider
An alternative DatePicker for Android
https://github.com/bendemboski/DateSlider
Last synced: about 6 hours ago
JSON representation
An alternative DatePicker for Android
- Host: GitHub
- URL: https://github.com/bendemboski/DateSlider
- Owner: bendemboski
- License: other
- Created: 2011-05-05T02:04:14.000Z (over 13 years ago)
- Default Branch: develop
- Last Pushed: 2011-11-09T23:25:31.000Z (about 13 years ago)
- Last Synced: 2024-11-15T01:05:33.565Z (5 days ago)
- Language: Java
- Homepage: http://code.google.com/p/android-dateslider/
- Size: 407 KB
- Stars: 238
- Watchers: 22
- Forks: 106
- Open Issues: 13
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/bendemboski/DateSlider
- awesome-android-ui - https://github.com/bendemboski/DateSlider
README
Copyright (C) 2011 Daniel Berndt - Codeus Ltd - DateSlider 1.1
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.What is DateSlider ?
====================It is an android dialog which can be used in a similar way to the default DatePicker or TimePicker
dialog. Its main advantages are a slide based interface and features such as a minimum or maximum
date, or a minute interval for the time picker variantHow To Install
==============in the files you can find a sample application (i.e. activity) which
implements the DateSlider. Just copy the relevant files into your project
and you should be ready to go!The relevant files for the _default_ slider are:
In the src/.../DateSlider folder:
- DateSlider.java
- DefaultDateSlider.java
- ScrollLayout.java
- ScrollContainer.java
- TimeObject.java
- TimeView.java
In the src/.../DateSlider/labeler folder:
- DayLabeler.java
- DayDateLabeler.java
- Labeler.java
- MonthLabeler.java
- MonthYearLabeler.java
- Util.java
In the src/.../DateSlider/labeler folder:
- *.java (all files)
In the res/ folder:
- drawable/*.xml
- layout/defaultdateslider.xml
- layout/dialogbuttons.xml
- layout/dialogtitle.xml
- values/*.xmlIf you want to use any other dateslider implementation just follow the dependencies. (I hope the
names of the files should give some clues about whether or not they are needed for a certain
implementation)Changes
=========1.1
---------
the core algorithm was rewritten from scratch to make it faster, smoother, less memory expensive and
easier to adapt1.1.2
- - - - -
added a setTime() method to update the time after the dialog has been first invoked
fixed a bug which occurred when dealing with time zones other than the default time zone1.2
---------
A massive thanks to [Ben Demboski] who spend a lot of invaluable work in refactoring this project.
He made some big changes in the code base to make it very easy to expand and modify the dateslider's
look and behaviour.now the dateslider supports time ranges which can be open
it's straight forward to incorporate a minute interval such that only multiples of this interval
are displayed.the designed was refined. It is now based on an xml file and shadows at the border were included
Feedback
========Further feedback is highly appreciated and can be sent to < [email protected] > .
And please let me know whether the DateSlider makes it into your application!