博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
titanium开发教程-02-11增加交互性,在任何view
阅读量:5163 次
发布时间:2019-06-13

本文共 1190 字,大约阅读时间需要 3 分钟。

 

var win = Titanium.UI.createWindow({	title:"Adding Interactivity to Any View",	backgroundColor:"#FFFFFF",	exitOnClose:true})var view = Titanium.UI.createView({	top:0,	left:0,	height:54,	width:"100%",	backgroundColor:"#EEEEEE",	id:"View"})var image = Titanium.UI.createImageView({	image:"images/taste-cal.png",	top:0,	left:0,	height:54,	width:36,	id:"Image"})var label = Titanium.UI.createLabel({	text:"Taste of California",	top:0,	left:42,	height:54,	width:200,	color:"#000000",	backgroundColor:"orange",	id:"Label"})var results = Titanium.UI.createLabel({	text:"Touch the image, label, or view above",	bottom: 24,	height:"auto",	width:"auto",	textAlign:"center"})function touchHandler(e){		results.text = e.source.id + " was tapped";}function touchMoveHandler(e){	if(e.y > 54){		results.text = "Touch move on window \nx:" + e.x + ", y:" + e.y	}}image.addEventListener("touchend", touchHandler);label.addEventListener("touchend", touchHandler);view.addEventListener("touchend", touchHandler);win.addEventListener("touchmove", touchMoveHandler);view.add(image);view.add(label);win.add(view);win.add(results);win.open();

转载于:https://www.cnblogs.com/xiaozhanga4/archive/2012/03/17/2402818.html

你可能感兴趣的文章
写接口请求类型为get或post的时,参数定义的几种方式,如何用注解(原创)--雷锋...
查看>>
【OpenJ_Bailian - 2287】Tian Ji -- The Horse Racing (贪心)
查看>>
Java网络编程--socket服务器端与客户端讲解
查看>>
List_统计输入数值的各种值
查看>>
学习笔记-KMP算法
查看>>
Timer-triggered memory-to-memory DMA transfer demonstrator
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
64位主机64位oracle下装32位客户端ODAC(NFPACS版)
查看>>
获取国内随机IP的函数
查看>>
今天第一次写博客
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
IP V4 和 IP V6 初识
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
『Raid 平面最近点对』
查看>>
【ADO.NET基础-数据加密】第一篇(加密解密篇)
查看>>
C语言基础小结(一)
查看>>
STL中的优先级队列priority_queue
查看>>
UE4 使用UGM制作血条
查看>>