Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: Release 2.1.4, Release 3.0.2, Release 3.1.0
-
Fix Version/s: 2013 Sprint 12 API, 2013 Sprint 12, Release 3.1.2, Release 3.2.0
-
Component/s: Android
-
Environment:
Android 4.2, 2.3.5
Titanium SDK 3.1.0GA
Nexus 4
Samsung Galaxy S2
Description
When creating a date or time picker and setting useSpinner to true, the picker is very small.
Code to reproduce
Ti.UI.backgroundColor = 'white';
|
var win = Ti.UI.createWindow({
|
exitOnClose: true,
|
layout: 'vertical'
|
});
|
|
var picker = Ti.UI.createPicker({
|
type:Ti.UI.PICKER_TYPE_DATE,
|
minDate:new Date(2009,0,1),
|
maxDate:new Date(2014,11,31),
|
value:new Date(2014,3,12),
|
top:50,
|
width: 300,
|
useSpinner: true
|
});
|
|
win.add(picker);
|
win.open();
|
Attachments
Issue Links
- relates to
-
TIMOB-17447 Android: TIME Picker is too small when useSpinner is set to true
-
- Closed
-
-
TIMOB-14007 Android: Font property doesn't work for Picker and PickerColumn
-
- Closed
-
-
TIMOB-17447 Android: TIME Picker is too small when useSpinner is set to true
-
- Closed
-