2012年7月1日 星期日

Titanium 背景開啟webview


資料來源
http://developer.appcelerator.com/question/22871/how-to-start-the-app-then-render-html-in-background-then-show-it

基本作法
加入webview時,設定visible = fasle
然後加入load事件動作: 設定 visiable=true
這作法有個副作用是webview在顯示時會保存一開始設定網頁狀態,不會自動重新讀取,
除非跳離window或要求更新

code:
var webView = Titanium.UI.createWebView({url:'index.html', visible:false});
webView.addEventListener('load', function() { webView.visible = true; });