Created
December 1, 2011 15:01
-
-
Save mogya/1417382 to your computer and use it in GitHub Desktop.
俺ブラウザ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Titanium.UI.setBackgroundColor('#000'); | |
var tabGroup = Titanium.UI.createTabGroup(); | |
var win1 = Titanium.UI.createWindow({ | |
title:'俺ブラウザ', | |
backgroundColor:'#fff' | |
}); | |
win1.tabBarHidden = true; | |
var webView = Titanium.UI.createWebView( { | |
url: "http://oasis.mogya.com/iphone/" | |
}); | |
win1.add(webView); | |
var tab1 = Titanium.UI.createTab({ | |
icon:'KS_nav_views.png', | |
title:'俺ブラウザ', | |
window:win1 | |
}); | |
tabGroup.addTab(tab1); | |
tabGroup.open(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment