mahesh rocks
mahesh rocks

Reputation: 61

disable double tap zoom WebView for titanium mobile development

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

Answers (1)

AndroidCoder
AndroidCoder

Reputation: 2735

try this :

mWebView.getSettings().setBuiltInZoomControls(false);

Upvotes: 1

Related Questions