会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
校长阿四
Titanium开发
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
7
8
9
10
11
12
13
14
15
16
下一页
2012年3月17日
titanium开发教程-02-04创建开关
摘要: var win = Titanium.UI.createWindow({ title:"创建开关", backgroundColor:"#FFF", exitOnClose:true});var switch1 = Titanium.UI.createSwitch({ top:100, value:true, //设置开关的初始值, true 或 false ( 在iOS为1 或 0 ,...
阅读全文
posted @ 2012-03-17 00:13 校长阿四
阅读(511)
评论(0)
推荐(0)
编辑
2012年3月16日
titanium开发教程-02-03创建滑竿
摘要: var win = Titanium.UI.createWindow({ backgroundColor:"#FFF"});var slider1 = Titanium.UI.createSlider({ height:"auto", width:300, top:100, min:0, //slider最小值 (Android) max:10 //slider最大值 (Android)});...
阅读全文
posted @ 2012-03-16 23:01 校长阿四
阅读(533)
评论(0)
推荐(0)
编辑
titanium开发教程-02-02创建按钮
摘要: var win = Titanium.UI.createWindow({ title:"创建按钮", backgroundColor:"#FFFFFF", exitOnClose:true});var simpleButton = Titanium.UI.createButton({ title:"按住我", width:"25%", height:"10%", top:"10%", ...
阅读全文
posted @ 2012-03-16 22:13 校长阿四
阅读(519)
评论(0)
推荐(0)
编辑
titanium开发教程-02-01监听事件
摘要: var win = Titanium.UI.createWindow({ title:"监听事件", backgroundColor:"#FFFFFF", exitOnClose:true});var img01 = Titanium.UI.createImageView({ image:"images/box01.png", height:75, width:75, top:24, l...
阅读全文
posted @ 2012-03-16 21:56 校长阿四
阅读(540)
评论(0)
推荐(0)
编辑
titanium开发教程-01-07分组和嵌套view
摘要: var win = Titanium.UI.createWindow({ title:"Grouping and Nesting Views", backgroundColor:"#FFFFFF", exitOnClose:true})//第一, 我们创建一些views 为了把图片和文字显示var view01 = Titanium.UI.createView({ top:0, left...
阅读全文
posted @ 2012-03-16 21:42 校长阿四
阅读(480)
评论(0)
推荐(0)
编辑
titanium开发教程-01-06理解 Z-Depth
摘要: var win = Titanium.UI.createWindow({ title:"理解 Z-Depth", backgroundColor:"#FFFFFF", exitOnClose:true})var imageView01 = Titanium.UI.createImageView({ image:"images/box01.png", height:75, wi...
阅读全文
posted @ 2012-03-16 21:29 校长阿四
阅读(496)
评论(0)
推荐(0)
编辑
titanium开发教程-01-05使用image view
摘要: 上面其实是两个image view 我们进行了叠加,下面的图片则是远程获取到的不是本地的图片 var win = Titanium.UI.createWindow({ title:"使用Image View", backgroundColor:"#FFFFFF", exitOnClose:true});//image视图var imageView01 = Titanium.UI.creat...
阅读全文
posted @ 2012-03-16 19:21 校长阿四
阅读(592)
评论(0)
推荐(0)
编辑
titanium开发教程-01-04使用label view
摘要: var win = Titanium.UI.createWindow({ title:"文本视图", backgroundColor:"#FFFFFF", exitOnClose:true})var label01 = Titanium.UI.createLabel({ text:"文本标签 01", top:0, left:0, height:24, width:"100%", tex...
阅读全文
posted @ 2012-03-16 18:52 校长阿四
阅读(612)
评论(0)
推荐(0)
编辑
titanium开发教程-01-03理解windows和views
摘要: //创建一个windowvar win = Titanium.UI.createWindow({ title:"window标题", //这个标题只在Android中显示; 在iOS, window 需要一个Tab group才能显示 backgroundColor:"#FFCC00", //window的背景颜色设置,这里设为橙色 exitOnClose: true...
阅读全文
posted @ 2012-03-16 18:16 校长阿四
阅读(627)
评论(0)
推荐(0)
编辑
titanium开发教程-01-02检测平台
摘要: 有两种方式检测你的程序将要运行在哪个平台 var PLATFORM = Ti.Platform.osname; var myVar = (Ti.Platform.osname === "android") ? 60 : 35 ;
阅读全文
posted @ 2012-03-16 17:54 校长阿四
阅读(502)
评论(0)
推荐(0)
编辑
上一页
1
···
7
8
9
10
11
12
13
14
15
16
下一页
公告