{ "id": "62737", "key": "TIMOB-2105", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "15422", "description": "Release 3.3.0", "name": "Release 3.3.0", "archived": false, "released": true, "releaseDate": "2014-07-16" } ], "resolution": { "id": "2", "description": "The problem described is an issue which will never be fixed.", "name": "Won't Fix" }, "resolutiondate": "2014-03-31T22:08:41.000+0000", "created": "2011-04-15T03:10:34.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "android", "feature" ], "versions": [], "issuelinks": [], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-22T18:28:24.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "{html}
The following code generates a very simple picker. If you change\r\nthe values of fontSize and/or height, you will see that there is no\r\neffect. The same issue may apply to other properties.
\r\nNote that the change event is included to show that it works as\r\nexpected.
\r\n{code}\r\nwin = Ti.UI.currentWindow;\r\npickerData =\r\n [\r\n { title:'Option 1' },\r\n { title:'Option 2' },\r\n { title:'Option 3' },\r\n { title:'Option 4' }\r\n ];\r\n\r\nvar pickerRows = [];\r\nfor(var i=0, ilen=pickerData.length; i< ilen; i++){\r\n pickerRows.push(Ti.UI.createPickerRow({ title:pickerData[i].title, fontSize:6, height:6 }));\r\n}\r\n\r\nvar picker = Ti.UI.createPicker();\r\npicker.add(pickerRows);\r\nwin.add(picker);\r\n\r\npicker.addEventListener('change', function(e){\r\n Ti.API.info('Selected value: '+e.selectedValue);\r\n});{code}\r\n ", "attachment": [], "flagged": false, "summary": "Android: PickerRow does not respect fontSize and height (and possibly other properties also)", "creator": { "name": "hal", "key": "hal", "displayName": "hal", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "rpfeiffer", "key": "rpfeiffer", "displayName": "Ralf Pfeiffer", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "127506", "author": { "name": "dthorp", "key": "dthorp", "displayName": "Don Thorp", "active": true, "timeZone": "America/Los_Angeles" }, "body": "{html}I'm marking this a feature. Bill please triage this when you get\na chance and see what the risk for including in 1.5 is.
See also feature request #2116