[TIMOB-26277] Android: Maximizing the video in a webView goes blank
| GitHub Issue | n/a |
| Type | Bug |
| Priority | None |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | Release 7.3.0 |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | n/a |
| Reporter | Josh Longton |
| Assignee | Unknown |
| Created | 2018-08-09T09:23:23.000+0000 |
| Updated | 2018-08-09T09:26:15.000+0000 |
Description
When a video in a webView is maximized the screen goes blank until the device is rotated.
*Steps to reproduce*
Create an android application with the testcase below
Build to android device
Click on Play and then on the Fullscreen button of the video.
*Testcase*
*app.js*
{noformat}
var win = Ti.UI.createWindow({
backgroundColor : 'yellow'
});
var webview = Ti.UI.createWebView({
lightTouchEnabled: false,
url: "webpage.html"
});
win.add(webview);
win.open();
{noformat}
*webpage.html*
{noformat}
{noformat}
*Error*
The screen goes blank until rotated
*Expected*
The video is shown even if the device is not rotated.
Comments
JSON Source
No comments