Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Medium
-
Resolution: Fixed
-
Affects Version/s: Release 3.3.0
-
Fix Version/s: Release 3.4.2, Release 3.5.0, Release 4.0.0
-
Component/s: Android
-
Labels:
-
Environment:
Mobile SDK 3.3.0.GA
Android Version 4.4.2
Device: Moto X
-
Story Points:5
-
Sprint:2014 Sprint 22 SDK
Description
Problem Description
When you use a Date Picker with TYPE_TIME set, it will look really small. Even if you set the font size.
Steps to reproduce
1. Create a new mobile project (Classic Titanium)
2. Paste the testcase into app.js:
Ti.UI.backgroundColor = 'white';
|
var win = Ti.UI.createWindow({
|
exitOnClose: true,
|
layout: 'vertical'
|
});
|
|
var picker = Ti.UI.createPicker({
|
type:Ti.UI.PICKER_TYPE_TIME,
|
minDate:new Date(2009,0,1),
|
maxDate:new Date(2014,11,31),
|
value:new Date(2014,3,12),
|
font: {
|
fontWeight: 'bold',
|
fontSize:32,
|
},
|
top:50,
|
width: Ti.UI.FILL,
|
useSpinner: true,
|
});
|
|
win.add(picker);
|
win.open();
|
Attachments
Issue Links
- relates to
-
TIMOB-13870 Android: Date picker is too small when useSpinner set to true
-
- Closed
-
-
TIMOB-13870 Android: Date picker is too small when useSpinner set to true
-
- Closed
-