{ "id": "130199", "key": "TIMOB-16956", "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": [], "resolution": null, "resolutiondate": null, "created": "2014-05-09T05:30:47.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "android" ], "versions": [ { "id": "15971", "description": "Release 3.2.3", "name": "Release 3.2.3", "archived": false, "released": true, "releaseDate": "2014-04-30" } ], "issuelinks": [], "assignee": null, "updated": "2018-02-28T20:04:03.000+0000", "status": { "description": "The issue is open and ready for the assignee to start work on it.", "name": "Open", "id": "1", "statusCategory": { "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "This feature needs to be implemented since input text is not visible if the search view is being placed inside actionBar with HOLO.DARK theme.\r\n\r\nSee screenshot attached", "attachment": [ { "id": "47944", "filename": "unseeable_input.png", "author": { "name": "jialhe85@gmail.com", "key": "jialhe85@gmail.com", "displayName": "David He", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2014-05-09T05:30:47.000+0000", "size": 110122, "mimeType": "image/png" } ], "flagged": false, "summary": "Android: SearchBar - Text color needs to be implemented for Dark Holo Theme", "creator": { "name": "jialhe85@gmail.com", "key": "jialhe85@gmail.com", "displayName": "David He", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "jialhe85@gmail.com", "key": "jialhe85@gmail.com", "displayName": "David He", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Ti SDK 3.2.0\r\nAndroid SDK 4.3", "comment": { "comments": [ { "id": "304377", "author": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Thank you for the screenshot. Would it be possible for you to attach the test case as well so that I can verify issue?", "updateAuthor": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2014-05-12T16:39:42.000+0000", "updated": "2014-05-12T16:39:42.000+0000" }, { "id": "304502", "author": { "name": "jialhe85@gmail.com", "key": "jialhe85@gmail.com", "displayName": "David He", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Ritu\r\n\r\nSure, see below (Alloy Version)\r\n\r\n{code:title=index.js|borderStyle=solid}\r\nvar search;\r\nvar searchAsChild = false;\r\n\r\nvar picker = Ti.UI.createPicker({\r\n\tbottom : 50\r\n});\r\n\r\nvar data = [];\r\ndata[0] = Ti.UI.createPickerRow({\r\n\ttitle : 'Bananas'\r\n});\r\ndata[1] = Ti.UI.createPickerRow({\r\n\ttitle : 'Strawberries'\r\n});\r\ndata[2] = Ti.UI.createPickerRow({\r\n\ttitle : 'Mangos'\r\n});\r\ndata[3] = Ti.UI.createPickerRow({\r\n\ttitle : 'Grapes'\r\n});\r\n\r\npicker.add(data);\r\npicker.selectionIndicator = true;\r\n\r\nif (Ti.Platform.name == 'android' && Ti.Platform.Android.API_LEVEL >= 11) {\r\n\t// Use action bar search view\r\n\tsearch = Ti.UI.Android.createSearchView({\r\n\t\thintText : \"Table Search\",\r\n\t\tcolor : \"white\"\r\n\t});\r\n\r\n\t$.index.activity.onCreateOptionsMenu = function(e) {\r\n\t\tvar menu = e.menu;\r\n\t\tvar menuItem = menu.add({\r\n\t\t\ttitle : 'Table Search',\r\n\t\t\tactionView : search,\r\n\t\t\ticon : (Ti.Android.R.drawable.ic_menu_search ? Ti.Android.R.drawable.ic_menu_search : \"my_search.png\"),\r\n\t\t\tshowAsAction : Ti.Android.SHOW_AS_ACTION_IF_ROOM | Ti.Android.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW\r\n\t\t});\r\n\t};\r\n} else {\r\n\t// Use search bar\r\n\tsearch = Ti.UI.createSearchBar({\r\n\t\thintText : \"Table Search\"\r\n\t});\r\n\tsearchAsChild = true;\r\n}\r\n\r\nvar data = [];\r\ndata.push(Ti.UI.createTableViewRow({\r\n\ttitle : 'Apple'\r\n}));\r\ndata.push(Ti.UI.createTableViewRow({\r\n\ttitle : 'Banana'\r\n}));\r\ndata.push(Ti.UI.createTableViewRow({\r\n\ttitle : 'Orange'\r\n}));\r\ndata.push(Ti.UI.createTableViewRow({\r\n\ttitle : 'Raspberry'\r\n}));\r\n\r\nvar tableview = Titanium.UI.createTableView({\r\n\tdata : data,\r\n\tsearch : search,\r\n\tsearchAsChild : searchAsChild\r\n});\r\n\r\n$.index.add(tableview);\r\n\r\n$.index.add(picker);\r\n$.index.open();\r\n{code}\r\n\r\n{code:title=index.xml|borderStyle=solid}\r\n\r\n\t\r\n\t\r\n\r\n{code}", "updateAuthor": { "name": "jialhe85@gmail.com", "key": "jialhe85@gmail.com", "displayName": "David He", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2014-05-13T00:20:40.000+0000", "updated": "2014-05-13T00:20:40.000+0000" }, { "id": "304755", "author": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Moving this ticket to engineering for further evaluation and prioritization as I can reproduce this issue with the provided test case. Not sure if it should be considered a new feature or a bug.", "updateAuthor": { "name": "ragrawal", "key": "ragrawal", "displayName": "Ritu Agrawal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2014-05-14T05:10:16.000+0000", "updated": "2014-05-14T05:10:16.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }