Details
-
Type:
Bug
-
Status: Closed
-
Priority:
High
-
Resolution: Fixed
-
Affects Version/s: Release 1.8.1
-
Fix Version/s: Sprint 2012-05, Release 2.0.0
-
Component/s: Android
-
Labels:
-
Environment:
Android
Ti SDK 1.8.1
Feb 28, 2012
Description
This issue is similar to TIMOB-6956.
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
|
});
|
|
win.open();
|
|
picker.showTimePickerDialog({
|
callback: function(e) {
|
if (e.cancel) {
|
Ti.API.info('User canceled dialog');
|
} else {
|
Ti.API.info('User selected time: ' + e.value);
|
}
|
}
|
});
|
The above code causes the following run time error.
Uncaught Error: java.util.HashMap
|
Attachments
Issue Links
- relates to
-
TIMOB-16599 Android: showTimePickerDialog doesn't work
-
- Reopened
-