zoukankan      html  css  js  c++  java
  • titanium开发教程0101创建你第一个程序

    新建一个titanium mobile工程后,系统自动生成一个app.js文件,无需任何修改,直接启动程序即可。以下便是系统自动生成的代码

    1

    app.js

    // this sets the background color of the master UIView (when there are no windows/tab groups on it)
    Titanium.UI.setBackgroundColor('#000');
    
    // create tab group
    var tabGroup = Titanium.UI.createTabGroup();
    
    
    	//
    	// create base UI tab and root window
    	//
    	var win1 = Titanium.UI.createWindow({  
    	    title:'Tab 1',
    	    backgroundColor:'#fff'
    	});
    		var tab1 = Titanium.UI.createTab({  
    		    icon:'KS_nav_views.png',
    		    title:'Tab 1',
    		    window:win1
    		});
    		
    		var label1 = Titanium.UI.createLabel({
    			color:'#999',
    			text:'I am Window 1',
    			font:{fontSize:20,fontFamily:'Helvetica Neue'},
    			textAlign:'center',
    			'auto'
    		});
    	
    	win1.add(label1);
    	
    	//
    	// create controls tab and root window
    	//
    	var win2 = Titanium.UI.createWindow({  
    	    title:'Tab 2',
    	    backgroundColor:'#fff'
    	});
    		var tab2 = Titanium.UI.createTab({  
    		    icon:'KS_nav_ui.png',
    		    title:'Tab 2',
    		    window:win2
    		});
    		
    		var label2 = Titanium.UI.createLabel({
    			color:'#999',
    			text:'I am Window 2',
    			font:{fontSize:20,fontFamily:'Helvetica Neue'},
    			textAlign:'center',
    			'auto'
    		});
    	
    	win2.add(label2);
    
    
    
    //
    //  add tabs
    //
    tabGroup.addTab(tab1);  
    tabGroup.addTab(tab2);  
    
    
    // open tab group
    tabGroup.open();
  • 相关阅读:
    《Java技术》第一次作业
    链队列基本操作
    行编辑器,数制转换,杨辉三角
    顺序队列基本操作
    链栈基本操作
    顺序栈基本操作
    PTA链表
    PTA顺序表
    《Java技术》第三次作业
    《Java技术》第二次作业
  • 原文地址:https://www.cnblogs.com/xiaozhanga4/p/2400685.html
Copyright © 2011-2022 走看看