summaryrefslogtreecommitdiffstats
path: root/core/java/android/widget/NumberPicker.java
Commit message (Collapse)AuthorAgeFilesLines
* Renaming NumberPicker resources to be consistent.Svetoslav Ganov2011-01-111-1/+1
| | | | | | | | 1. The resources for the NumberPicker now start with 'numberpicker_' instead of the legacy 'timepicker_' 2. Removed unused resources. Change-Id: Ide7c61df1936f174b6fffc778cba3a58b324556a
* Fixed the NumberPicker to adjust to the closest value while scrolling/flingingSvetoslav Ganov2011-01-031-2/+13
| | | | Change-Id: I782603d9a187d0ce9196e3fc90f28e372637584c
* 3313982 DatePicker/TimePicker allow users to scroll date/time even when ↵Svetoslav Ganov2010-12-281-0/+6
| | | | | | disabled. Change-Id: I8c28615bfc813dfdddf21c40d84cc7c36f1fd391
* Adding APIs for setting whether to show week number and setting the start ↵Svetoslav Ganov2010-12-281-168/+222
| | | | | | day of week. Cleaned up the code a bit. Change-Id: Iaa7154c6912a68cd91df3ac881c324096394ea24
* 3298147 DatePicker dialog does not provide mechanism for specifying range ↵Svetoslav Ganov2010-12-221-2/+2
| | | | | | from which to select Change-Id: Ib5dd7db90ccc5b4d984914c481118049ac3648fe
* Bug 3191746. atePicker TimePicker: Dark theme is used in a Light theme appSvetoslav Ganov2010-12-171-1/+1
| | | | Change-Id: I20d0cca3b78af9db80854a57c88d6cab3b00f555
* Bug 3293819. Timepicker is showing single digit for 0, 1, 2 minutes (the ↵Svetoslav Ganov2010-12-171-0/+1
| | | | | | rest are fine) Change-Id: I55c50857740fc1210c45e9b7fc8905ec2266ed8c
* Fix for TimePicker not redrawing itself.Chet Haase2010-12-171-4/+1
| | | | | | | | | | | The problem was that NumberPicker override View.draw(), but did not call the superclass version of the method in some situations. This resulted in the DIRTY flag for the view not getting cleared properly, and future invalidations not propagating correctly. The fix was to call super.draw() from NumberPicker.draw(). Change-Id: Ic17215dea86d54b77375494ada124dd6970e3ad6
* Updating the light Date picker theme. Some UI fixes.Svetoslav Ganov2010-12-151-6/+2
| | | | Change-Id: Ic83fdf93868bf86478a1173e82f24ac27f6301bc
* bug_3259956 and bug_2166704Svetoslav Ganov2010-12-081-5/+23
| | | | Change-Id: I71b4cc3c1111e7a4e78fb276d54a291c22fb2752
* Updated the NumberPicker for exposing it into the SDKSvetoslav Ganov2010-12-071-61/+104
| | | | Change-Id: I3bd48d0210da8a202b6ff60deecb5d7776f1b73b
* Fixing the build breakageSvetoslav Ganov2010-12-071-6/+6
| | | | Change-Id: I8589e5fcdeec127c84d2b419f6ef44d7011a5a6b
* Adding DatePciker widget based on the Calednar team code. Updated DatePciker ↵Svetoslav Ganov2010-12-071-14/+85
| | | | | | and DatePickerDialog as the second part of the Time/Date pciker refresh feature. Change-Id: Id32c614bcd799463ca33bf08fb7d5cf44f8326a6
* Merge from gingerbread-plus-aospJean-Baptiste Queru2010-12-061-1/+1
|\ | | | | | | Change-Id: I154071687cdd51c28bb377ea3f1e818e96909b56
| * am 864b1e00: Merge "NumberPicker: Set formatter local value to US."Jean-Baptiste Queru2010-12-061-1/+2
| |\ | | | | | | | | | | | | * commit '864b1e007dc741ec10c23cabc0271f97a5b8c598': NumberPicker: Set formatter local value to US.
| | * NumberPicker: Set formatter local value to US.Chen Libao2010-12-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | As the Arabic language formatter would make number "1,2,3" to Arabic language word means one,two,three, NumberPicker won't like to show any thing other than numbers, add local settings to US, make the number 1,2,3 Change-Id: If2d161ac4133f6c9c6e1ec284d6d2fbf01855fa0
* | | New Number picker widgetSvetoslav Ganov2010-11-291-266/+1114
|/ / | | | | | | Change-Id: I834e725b58682e7a48cc3f3302c93c57b35d4e27
* | Fix bug 3024080 - Date picker month field uses numeric text fieldAdam Powell2010-10-021-8/+8
|/ | | | | | | NumberPicker now uses text entry when displayed value strings are provided. Change-Id: I555a7d6b64ad6a5af131b3e1d8c638dcdb00d02c
* Correctly validate numbers when pasted in NumberPicker.Romain Guy2010-03-051-2/+5
| | | | Bug #2258525
* Bug 2420366Paul Westbrook2010-02-051-0/+1
| | | | Rehide NumberPicker widget
* Bug 2330111Paul Westbrook2010-01-211-0/+522
Make NumberPicker public Made setCurrent() more robust, as the value needs to be within the range specified earlier. setCurrent() will now throw an exception if the specified doesn't fall in the range