[TIMOB-25388] Android: TextField borderColor is not showing on latest SDK (6.2.2.GA)
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | None |
| Status | Closed |
| Resolution | Duplicate |
| Resolution Date | 2017-10-17T15:11:20.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Android |
| Labels | n/a |
| Reporter | Fazlul Haque |
| Assignee | Yordan Banev |
| Created | 2017-10-13T19:12:20.000+0000 |
| Updated | 2017-10-17T15:11:20.000+0000 |
Description
Hello,
We have tested an issue on the following environment and find that TextField borderColor is not showing on latest SDK (6.2.2.GA) but it is working on previous SDK.
*Testing Environment:*
Ti SDK: 6.2.2.GA, 6.1.1.GA
Appcelerator Command-Line Interface, version 6.2.4
Android Device: Samsung Galaxy Grand Prime (5.1.1)
*Test Code:*
var win = Ti.UI.createWindow({
backgroundColor: 'white'
});
var textField = Ti.UI.createTextField({
borderStyle: Ti.UI.INPUT_BORDERSTYLE_ROUNDED,
color: '#336699',
top: 10, left: 10,
borderColor:'green'
width: 250, height: 60
});
win.add(textField);
win.open();
*Test Results:*
TextField borderColor is not showing on latest SDK (6.2.2.GA). Attached the output screenShots.
Attachments
| File | Date | Size |
|---|---|---|
| 6.1.1.GA_Result.jpg | 2017-10-13T19:10:55.000+0000 | 17406 |
| 6.2.2.GA_Result.jpg | 2017-10-13T19:10:56.000+0000 | 15462 |
I have tested the sample you provided with the changes from the linked ticket's PR and have confirmed it is a duplicate.