[TIMOB-13789] Android: opening a lightweight window with opacity animation fails
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2013-08-01T20:30:29.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 3.2.0 |
| Components | Android |
| Labels | module_animation, qe-testadded |
| Reporter | Davide Cassenti |
| Assignee | Ingo Muschenetz |
| Created | 2013-05-08T13:40:49.000+0000 |
| Updated | 2013-10-18T18:15:23.000+0000 |
Description
Problem description
Opening a window with an animation that changes its opacity fails if the window is not heavyweight.Steps to reproduce
Use the following code:
var win = Ti.UI.createWindow({
backgroundColor: 'blue',
opacity: 0
});
win.open({
duration : 250,
opacity : 1
});
The window never shows up - its opacity stays at 0. If you add some property to make the window heavyweight (e.g. navBarHidden=true or fullscreen=true), the animation works fine.
This is fixed in 3.2.0
Verified fixed. TiSDK 3.2.0.v20131017152001 CLI 3.2.0 Titanium Studio 3.2.0.201310152326 Closing.