{ "id": "104150", "key": "TIMOB-11608", "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": "14811", "description": "2013 Sprint 01 API", "name": "2013 Sprint 01 API", "archived": true, "released": true, "releaseDate": "2013-01-14" }, { "id": "14804", "description": "2013 Sprint 01", "name": "2013 Sprint 01", "archived": true, "released": true, "releaseDate": "2013-01-14" } ], "resolution": { "id": "2", "description": "The problem described is an issue which will never be fixed.", "name": "Won't Fix" }, "resolutiondate": "2013-01-09T10:54:50.000+0000", "created": "2012-10-30T21:29:27.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "api", "qe-and214" ], "versions": [ { "id": "14613", "description": "Release 2.1.4", "name": "Release 2.1.4", "archived": true, "released": true, "releaseDate": "2012-11-12" } ], "issuelinks": [ { "id": "24338", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "inwardIssue": { "id": "103186", "key": "TIMOB-11405", "fields": { "summary": "Android: TextField - Black bar appears if soft keyboard is invoked", "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": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "22398", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "88827", "key": "TIMOB-8303", "fields": { "summary": "iOS: Text Field/Area needs hasText method", "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": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "23759", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "103186", "key": "TIMOB-11405", "fields": { "summary": "Android: TextField - Black bar appears if soft keyboard is invoked", "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": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "27723", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "112781", "key": "TIDOC-1112", "fields": { "summary": "APIDoc: TextField example - TextField example should have font size property", "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": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "pwang", "key": "pwang", "displayName": "Ping Wang", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2013-04-12T21:32:56.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": "Description:\r\nBlack stripe appears above the text field at the bottom of the screen. Occurs on some devices (Galaxy Nexus (4.1.1), Samsung Galaxy SIII (4.0.4)). Does not occur on Android Emulator, Droid 3 (2.3.4) and LG VS910 4G (2.3.6).\r\n\r\nThis is not a regression, the behavior exists on 2.1.3 and 2.1.2 as well.\r\n\r\nSteps:\r\n1. Run the following code:\r\n{code}\r\nvar _window = Ti.UI.createWindow({\r\n backgroundColor : 'white'\r\n});\r\n \r\nvar textField = Ti.UI.createTextField({\r\n\t\t\tcolor : '#336699',\r\n\t\t\tbackgroundColor : '#eee',\r\n\t\t\tbottom : 10,\r\n\t\t\tleft : 10,\r\n\t\t\twidth : 250,\r\n\t\t\theight : 60,\r\n\t\t\tborderStyle : Ti.UI.INPUT_BORDERSTYLE_ROUNDED\r\n\t\t});\r\n\t\t_window.add(textField);\r\n\r\n\t\tvar textArea = Ti.UI.createTextArea({\r\n\t\t\tborderStyle : Ti.UI.INPUT_BORDERSTYLE_ROUNDED,\r\n\t\t\tbackgroundColor : '#eee',\r\n\t\t\tcolor : '#336699',\r\n\t\t\ttop : 10,\r\n\t\t\tleft : 10,\r\n\t\t\twidth : 250,\r\n\t\t\theight : 60\r\n\t\t});\r\n\t\t_window.add(textArea);\r\n\t\t\r\n\t\t_window.open();\r\n{code}\r\n2. Dismiss two alerts\r\n3. Click on the text field at the bottom of the screen to invoke the soft keyboard.\r\n4. Press hardware \"back\" button\r\n5. Repeat steps 2 and 3 several times\r\n\r\nActual result:\r\nBlack stripe appears above the text field\r\n\r\nExpected:\r\nShould not see any black stripes above the text field", "attachment": [ { "id": "33073", "filename": "device-2012-10-30-142331.png", "author": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-30T21:29:27.000+0000", "size": 46002, "mimeType": "image/png" }, { "id": "33074", "filename": "device-2012-10-30-142909.png", "author": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-30T21:29:27.000+0000", "size": 26639, "mimeType": "image/png" } ], "flagged": false, "summary": "Android: TextField and TextArea - Black stripe appears above the text field at the bottom of the screen", "creator": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Tested on:\r\nTitanium Studio, build: 3.0.0.201210271747\r\nTitanium SDK, build: 2.1.4.v20121026164613\r\nDevices: Galaxy Nexus (4.1.1), Samsung Galaxy SIII (4.0.4)", "comment": { "comments": [ { "id": "231963", "author": { "name": "pwang", "key": "pwang", "displayName": "Ping Wang", "active": true, "timeZone": "America/Los_Angeles" }, "body": "The issue only happens when the height of the text field/text area is very small and the backgroundColor of the text field/text area is set.", "updateAuthor": { "name": "pwang", "key": "pwang", "displayName": "Ping Wang", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-12-19T01:14:20.000+0000", "updated": "2012-12-27T17:52:40.000+0000" }, { "id": "233690", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Looks like the issue is caused due to the fact that the default font for the text field is too large to fit in the height provided. \r\n\r\nSetting a font height that actually fits the text field fixes the issue. Marking as wont fix.", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-01-09T10:54:50.000+0000", "updated": "2013-01-09T10:54:50.000+0000" } ], "maxResults": 2, "total": 2, "startAt": 0 } } }