[TIMOB-25628] Android : Webview with fullscreen window not working as expected
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | None | 
| Status | Closed | 
| Resolution | Duplicate | 
| Resolution Date | 2018-09-05T17:04:47.000+0000 | 
| Affected Version/s | Release 7.0.0, Release 7.0.1 | 
| Fix Version/s | n/a | 
| Components | Android | 
| Labels | n/a | 
| Reporter | Aminul Islam | 
| Assignee | Unknown | 
| Created | 2017-12-25T18:18:53.000+0000 | 
| Updated | 2018-09-05T17:04:47.000+0000 | 
Description
	I am coming across an issue with webview for android. I have explained it in this screencast (video/audio). 
https://screencast-o-matic.com/watch/cblZFY29zJ
Steps:
1. Create an example apps with fullscreen window.
2. Add a webview with the following URL : https://wallet.gbsinfosolutions.com/index.php/mobile-topup'
3. Click on cardholder name text field in webview.
4. Webview stopped scroll 
Note: This issue only for Android with fullscreen window.
Test Code :
var webview = Titanium.UI.createWebView({
	url : 'https://wallet.gbsinfosolutions.com/index.php/mobile-topup'
});
var window = Titanium.UI.createWindow({
	fullscreen:true
});
window.add(webview);
window.open({
	modal : true
});
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/Theme.AppCompat.Translucent.NoTitleBar.Fullscreen"/>
</manifest>
</android>
Attachments
| File | Date | Size | 
|---|---|---|
| 0-sa-d2-899e7fd926716b5dc565ee9246b85508.jpg | 2017-12-25T18:13:48.000+0000 | 74197 | 
No comments