2010-10-31 161 views
0

我使用appcelerator爲Windows創建了一個很棒的應用程序,並且我想將其轉換爲移動(android)。appcelerator - 將Windows應用程序轉換爲移動應用程序

問題是,與在默認啓動程序爲「index.html」的窗口中創建應用程序不同,我可以將所有javascript/css/html混合在一起,移動默認啓動程序爲app.js.

我已經試過如下:

var webview = Titanium.UI.createWebView({ 
    url : 'index.html' 
}); 

var window = Titanium.UI.createWindow(); 
window.add(webview); 
window.open({modal:true}); 

這個偉大的工程但是,沒有API的我使用的index.html裏面是正在運行,它只是提醒錯誤(未定義)。

有誰知道如何解決這個問題?

編輯: 只有兩種API的我用我的應用程序:

var db = Titanium.Database.open('app_data'); 
var device_id = Titanium.Platform.id; 

回答

相關問題