Reputation: 61
The titanium app for Android shows a zoom when we double tap the screen. How can I disable this feature from my own Webview in titanium?
var mywebview = Titanium.UI.createWebView({
enableZoomControls : 'false',
keepScreenOn : 'true',
scalesPageToFit : 'true',
top : '0%',
left : '0%',
right : '0%',
url : fbUrl,
width : '100%'
});
Upvotes: 1
Views: 1086
Reputation: 2735
try this :
mWebView.getSettings().setBuiltInZoomControls(false);
Upvotes: 1