[TIMOB-11822] Android: Views - Red boarder is not visible on Motorola RAZR i
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Not Our Bug |
| Resolution Date | 2017-06-27T18:25:03.000+0000 |
| Affected Version/s | Release 3.0.0 |
| Fix Version/s | n/a |
| Components | Android |
| Labels | qe-and100112 |
| Reporter | Tamila Smolich |
| Assignee | Eric Merriman |
| Created | 2012-11-19T18:43:58.000+0000 |
| Updated | 2017-06-27T18:25:03.000+0000 |
Description
Description:
Red boarder is not visible on Motorola RAZR i XT890 (Intel inside). Works fine on Nexus 10 (4.2) and Samsung Galaxy SIII (4.0.4).
Not a regression, occurs on 2.1.4 and 2.1.3 as well.
Steps:
1. Create an app and make the tiapp.xml's section so:
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>11</tool-api-level>
<manifest>
<application android:hardwareAccelerated="true"/>
</manifest>
</android>
2. Make the app.js so:
Titanium.UI.setBackgroundColor('#000');
var win = Titanium.UI.createWindow({
title:'Test',
backgroundColor:'#000',
exitOnClose: true
});
win.add(Ti.UI.createView({
backgroundColor: "blue",
borderColor: "red",
borderWidth: 10,
borderRadius: 5,
left: "10dp",
right: "10dp",
top: "50dp",
height: "200dp"
}));
win.open();
3. Run the app on Motorola RAZR i.
Expected result:
Should see a blue view with red boarder
Actual:
Red boarder is not visible
Attachments
| File | Date | Size |
|---|---|---|
| device-2012-11-19-102646.png | 2012-11-19T18:43:58.000+0000 | 19897 |
device specific jithinpv