当前位置:编程学习 > wap >>

Sencha touch初体验

 我们将在本文中讲解一个Sencha Touch的例子。

PS:模拟器访问本地server的地址是10.0.2.2:8080,而不是127.0.0.1:8080
1、导入touch的相关Javascript,CSS以及资源文件
 

2、index.html

[html]
<!DOCTYPE html>  
<html>  
<head>  
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
     <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />  
     <title>Sencha Touch List Example</title>  
    <!-- import touch css and js -->  
     <link rel="stylesheet" href="touch/resources/css/sencha-touch.css" type="text/css">  
    <script type="text/javascript" src="touch/sencha-touch-debug.js"></script><script type="text/javascript" src="src/index.js"></script>  
</head>  
<body></body>  
</html>  
3、index.js
[java]
  1: /**  
  2:  * 前言:  
  3:  * 此例子来自sencha touch的官方example  
  4:  * 注释用语如有不当请见谅。  
  5:  */   
  6: //相信这是每个页面都是一样的   
  7: Ext.setup({   
  8:     tabletStartupScreen: 'tablet_startup.png',   
  9:     phoneStartupScreen: 'phone_startup.png',   
 10:     icon: 'icon.png',   
 11:     glossOnIcon: false,   
 12:     onReady : function() {   
 13:         //注册一个名为“Contact”的模型,显示的字段为firstName和lastName   
 14:         Ext.regModel('Contact', {   
 15:             fields: ['firstName', 'lastName']   
 16:         });   
 17:            
 18:         //定义一个对象,有点类似Android里面的BaseAdapter   
 19:         var groupingBase = {   
 20:             itemTpl: '<div class="contact2"><strong>{firstName}</strong> {lastName}</div>',   
 21:             selModel: {//选择模型,单选;应该还有多选   
 22:                 mode: 'SINGLE',   
 23:                 allowDeselect: true   
 24:             },   
 25:             grouped: true,//分组   
 26:             indexBar: true, //索引栏   
 27:                
 28:             //定义点击事件   
 29:             onItemDisclosure: {   
 30:                 scope: 'test',   
 31:                 //事件处理 www.zzzyk.com    
 32:                 handler: function(record, btn, index) {   
 33:                     alert('Disclose more info for ' + record.get('firstName'));   
 34:                 }   
 35:             },   
 36:             //数据仓库   
 37:             store: new Ext.data.Store({   
 38:                 model: 'Contact',//与上面注册的模型对应   
 39:                 sorters: 'firstName',//排序字段   
 40:                    
 41:                 //分组title显示的数据源,为firstName的首字母   
 42:                 getGroupString : function(record) {   
 43:                     return record.get('firstName')[0];   
 44:                 },   
 45:                 //就是数据了   
 46:                 data: [   
 47:                     {firstName: 'Aaron', lastName: 'Conran'},   
 48:                     {firstName: 'Ape', lastName: 'Evilias'},   
 49:                     {firstName: 'Dave', lastName: 'Kaneda'},   
 50:                     {firstName: 'Michael', lastName: 'Mullany'},   
&nbs

补充:移动开发 , 其他 ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,