{ "id": "149172", "key": "TIMOB-19081", "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": "16925", "description": "WatchKit Support--all going into 5.0 now", "name": "Release 5.0.0", "archived": true, "released": true, "releaseDate": "2015-09-16" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2015-07-10T07:45:47.000+0000", "created": "2015-06-26T12:51:34.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "themes" ], "versions": [ { "id": "16593", "description": "Release 4.0.0", "name": "Release 4.0.0", "archived": false, "released": true, "releaseDate": "2015-05-21" } ], "issuelinks": [ { "id": "49206", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "151756", "key": "TIDOC-2331", "fields": { "summary": "TIDOC: navbar-hidden and statusbar-hidden are back and fullscreen behaviour changed", "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": "None", "id": "6" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "msamah", "key": "msamah", "displayName": "Ashraf Abu", "active": false, "timeZone": "Asia/Singapore" }, "updated": "2015-10-06T14:48:50.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": "Every android app we build includes a few [built-in themes|https://github.com/appcelerator/titanium_mobile/blob/master/android/templates/build/theme.xml]:\r\n\r\n* {{Theme.AppCompat.Fullscreen}}\r\n* {{Theme.AppCompat.Translucent}}\r\n* {{Theme.AppCompat.Translucent.NoTitleBar}}\r\n* {{Theme.AppCompat.Translucent.NoTitleBar.Fullscreen}}\r\n* {{Theme.Titanium}}, which extends either {{Theme.AppCompat}} directly or {{Theme.AppCompat.Fullscreen}} depending on the {{}} setting in {{tiapp.xml}}.\r\n\r\nStrangely enough, it does not include a theme that would cover one of the most common use cases: hiding the Action Bar. Our [guide|http://docs.appcelerator.com/platform/latest/#!/guide/Android_Action_Bar-section-36735509_AndroidActionBar-HidingtheActionBar] explains how to do this using a custom theme, while it could be much simpeler if only we would include one by default.\r\n\r\nvia *tiapp.xml*\r\n{code:xml}\r\n \r\n \r\n \r\n \r\n\r\n{code}\r\n\r\nor per window:\r\n\r\n{code:javascript}\r\nTi.UI.createWindow({\r\n theme: \"Theme.AppCompat.NoTitleBar\"\r\n}).open();\r\n{code}\r\n\r\nIdeally, the new themes would follow the same naming convention as the Translucent ones:\r\n\r\n{code:xml}\r\n\t\r\n\t\r\n\t\r\n\r\n\t\r\n\t