-
Notifications
You must be signed in to change notification settings - Fork 106
/
README
97 lines (69 loc) · 2.9 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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 at
http://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 variant
How 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/*.xml
If 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 adapt
1.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 zone
1.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!