{ "id": "165703", "key": "TIMOB-24365", "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": "21050", "name": "Release 10.0.0", "archived": false, "released": true, "releaseDate": "2021-05-17" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2021-03-11T02:20:30.000+0000", "created": "2017-02-01T14:14:17.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "ActivityIndicator", "android", "parity" ], "versions": [], "issuelinks": [ { "id": "59241", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "176048", "key": "TIMOB-28351", "fields": { "summary": "Android: Update ProgressBars/ActivityIndicators to use material theme", "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": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2021-03-11T02:20:30.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": "Steps to reproduce the error : \r\n\r\nvar win = Ti.UI.createWindow({\r\nbackgroundColor : \"#fff\"\r\n});\r\n\r\nvar activityIndicator = Ti.UI.createActivityIndicator({ \r\n indicatorColor :\"red\",\r\n indicatorDiameter : \"50dp\"\r\n});\r\n\r\nactivityIndicator.show();\r\nwin.add(indicatorHolder);\r\n\r\nwin.open();", "attachment": [ { "id": "61422", "filename": "Screen Shot 2017-02-01 at 8.01.31 pm.png", "author": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-01T14:14:10.000+0000", "size": 48619, "mimeType": "image/png" } ], "flagged": false, "summary": "Android: Ti.UI.ActivityIndicator \"indicatorColor\" not working", "creator": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "*Studio, build: 4.8.1.201612050850\r\nSDK : 6.0.1.GA\r\nType : Android App*", "comment": { "comments": [ { "id": "406040", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "{{indicatorDiameter}} is mobileweb only. And your example code does not work, {{indicatorHolder}} is not defined. If you mean {{indicatorHolder}} add it before showing it.", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2017-02-01T14:44:01.000+0000", "updated": "2017-02-01T14:44:01.000+0000" }, { "id": "406065", "author": { "name": "sdarda", "key": "sdarda", "displayName": "Sharif AbuDarda", "active": false, "timeZone": "Asia/Dhaka" }, "body": "Hello, I have tested the below code, I see the indicatorColor is not working in Android. tested with SDK 6.0.1.GA. \r\n{code}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor : \"#fff\"\r\n});\r\n\r\nvar activityIndicator = Ti.UI.createActivityIndicator({\r\n indicatorColor : \"yellow\"\r\n});\r\n\r\nwin.add(activityIndicator);\r\n\r\nwin.addEventListener('open', function(e) {\r\n activityIndicator.show();\r\n\r\n});\r\n\r\nwin.open();\r\n{code}\r\n", "updateAuthor": { "name": "sdarda", "key": "sdarda", "displayName": "Sharif AbuDarda", "active": false, "timeZone": "Asia/Dhaka" }, "created": "2017-02-01T20:20:05.000+0000", "updated": "2017-02-01T20:24:03.000+0000" }, { "id": "406142", "author": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hi *@Hans Knöchel* : Thanks, for the reply and I believe that was a copy paste error, so you please try with the below code and you'll find the issue with \"*IndicatorColor*\". I need to change the color of the animated indicator.\r\n\r\nvar win = Ti.UI.createWindow(\r\n{ backgroundColor : \"#fff\" }\r\n\r\n);\r\n\r\nvar activityIndicator = Ti.UI.createActivityIndicator(\r\n{ indicatorColor :\"red\", indicatorDiameter : \"50dp\" }\r\n\r\n);\r\n\r\nactivityIndicator.show();\r\nwin.add(activityIndicator);\r\n\r\nwin.open();", "updateAuthor": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-02T13:46:25.000+0000", "updated": "2017-02-02T13:46:25.000+0000" }, { "id": "406389", "author": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hi, *Eric Merriman* : any success with this issue.", "updateAuthor": { "name": "ashishseb", "key": "ashishseb", "displayName": "Ashish Sebastian", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-06T12:11:03.000+0000", "updated": "2017-02-06T12:11:03.000+0000" }, { "id": "458382", "author": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "body": "This was resolved in Titanium 10.0.0 by ticket: [TIMOB-28351]", "updateAuthor": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2021-03-11T02:20:04.000+0000", "updated": "2021-03-11T02:20:04.000+0000" } ], "maxResults": 5, "total": 5, "startAt": 0 } } }