{ "id": "131284", "key": "TIMOB-17157", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "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": "15972", "description": "Release 3.4.0", "name": "Release 3.4.0", "archived": false, "released": true, "releaseDate": "2014-09-28" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2014-08-19T16:53:48.000+0000", "created": "2014-06-05T12:06:47.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "android", "fontsize", "module_picker", "picker", "qe-manualtest", "usespinner", "view" ], "versions": [ { "id": "15971", "description": "Release 3.2.3", "name": "Release 3.2.3", "archived": false, "released": true, "releaseDate": "2014-04-30" } ], "issuelinks": [ { "id": "38381", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "115046", "key": "TIMOB-14007", "fields": { "summary": "Android: Font property doesn't work for Picker and PickerColumn", "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" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "sunila", "key": "sunila", "displayName": "Sunila", "active": true, "timeZone": "Asia/Kolkata" }, "updated": "2014-08-19T16:53:48.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": "On Android we can't change the font size of Picker when not using Spinner Theme.\r\nmean keeping *useSpinner: false* in property.\r\n\r\nSuch kind of issue has also reported here: TIMOB-14007. But font size changes not work accordingly when do 'useSpinner' to 'false'.\r\n\r\n{code}\r\nTest Case Code:\r\n-------------------------------------------\r\nTi.UI.backgroundColor = 'white';\r\nvar win = Ti.UI.createWindow({\r\n layout: 'vertical'\r\n});\r\n \r\nvar picker = Ti.UI.createPicker({\r\n top:50,\r\n useSpinner: false,\r\n font: {fontSize: 80}, //font: {fontSize: 40},\r\n});\r\npicker.selectionIndicator = true;\r\n \r\nvar fruit = [ 'Bananas', 'Strawberries', 'Mangos', 'Grapes' ];\r\n \r\nvar column1 = Ti.UI.createPickerColumn({\r\n font: {fontSize: 80}, //font: {fontSize: 40},\r\n height : Ti.UI.SIZE,\r\n width : Ti.UI.SIZE\r\n});\r\n \r\nfor(var i=0, ilen=fruit.length; i