- 浏览: 7371622 次
- 性别:
- 来自: 上海
-
文章分类
- 全部博客 (1546)
- 企业中间件 (236)
- 企业应用面临的问题 (236)
- 小布Oracle学习笔记汇总 (36)
- Spring 开发应用 (54)
- IBatis开发应用 (16)
- Oracle基础学习 (23)
- struts2.0 (41)
- JVM&ClassLoader&GC (16)
- JQuery的开发应用 (17)
- WebService的开发应用 (21)
- Java&Socket (44)
- 开源组件的应用 (254)
- 常用Javascript的开发应用 (28)
- J2EE开发技术指南 (163)
- EJB3开发应用 (11)
- GIS&Mobile&MAP (36)
- SWT-GEF-RCP (52)
- 算法&数据结构 (6)
- Apache开源组件研究 (62)
- Hibernate 学习应用 (57)
- java并发编程 (59)
- MySQL&Mongodb&MS/SQL (15)
- Oracle数据库实验室 (55)
- 搜索引擎的开发应用 (34)
- 软件工程师笔试经典 (14)
- 其他杂项 (10)
- AndroidPn& MQTT&C2DM&推技术 (29)
- ActiveMQ学习和研究 (38)
- Google技术应用开发和API分析 (11)
- flex的学习总结 (59)
- 项目中一点总结 (20)
- java疑惑 java面向对象编程 (28)
- Android 开发学习 (133)
- linux和UNIX的总结 (37)
- Titanium学习总结 (20)
- JQueryMobile学习总结 (34)
- Phonegap学习总结 (32)
- HTML5学习总结 (41)
- JeeCMS研究和理解分析 (9)
最新评论
-
lgh1992314:
[u][i][b][flash=200,200][url][i ...
看看mybatis 源代码 -
尼古拉斯.fwp:
图片根本就不出来好吧。。。。。。
Android文件图片上传的详细讲解(一)HTTP multipart/form-data 上传报文格式实现手机端上传 -
ln94223:
第一个应该用排它网关吧 怎么是并行网关, 并行网关是所有exe ...
工作流Activiti的学习总结(八)Activiti自动执行的应用 -
ZY199266:
获取不到任何消息信息,请问这是什么原因呢?
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息 -
xiaoyao霄:
DestinationSourceMonitor 报错 应该导 ...
ActiveMQ 通过JMX监控Connection,Queue,Topic的信息
Titanium.UI.AlertDialog
android | 0.8 |
iphone | 0.8 |
ipad | 0.8 |
mobileweb | 1.8 |
Summary
An alert dialog is a modal view that includes an optional title, a message and buttons, positioned in the middle of the display.
Description
An alert dialog is created using Titanium.UI.createAlertDialog
.
Although this dialog always appears in the middle of the display (not touching the edges), other aspects of its aesthetics and the way the user interacts with it are different for each platform, as described below.
Android
On Android, the default alert dialog displays text information, via a title and message, without any buttons. As the user can use the system hardware back
button to dismiss it, a button is optional.
Buttons are shown if the buttonNames
property is defined, and are rendered horizontally below the message.
To create a custom layout, a view may be added and, in turn, a hierarchy of views added to that child view.
iOS
On iOS, the default alert dialog displays text information, via a title and message, with a single button to allow it to be dismissed.
Buttons are defined using the buttonNames
property and are rendered vertically below the message.
On iOS 4.0 and later, alert dialogs are automatically cancelled when the application is paused/suspended.
Global Alias
A global method alert()
is aliased to this object, and can be invoked with a single message. For example
alert('this is a message');
This will generate an alert with a title of "Alert" and an "OK" button.
Caveats
Multiple alerts should not be shown at once.
Properties
androidView | String |
View to load inside the message area, to create a custom layout.
|
buttonNames | String |
Name of each button to create.
|
cancel | String |
Index to define the button cancel button, returned by the
|
message | String |
Dialog message.
|
messageid | String |
Key identifying a string in the locale file to use for the message text.
|
ok | String |
Text for the
|
okid | String |
Key identifying a string in the locale file to use for the
|
title | String |
Title of the dialog.
|
titleid | String |
Key identifying a string in the locale file to use for the title text.
|
1.确认对话框
// test firing 2 alerts in a row, should show the // first and after you click OK, should then show the next var a = Titanium.UI.createAlertDialog({ title:'添加人员信息', message:"人员添加成功", buttonNames: ['确定'] }); //a.addEventListener('click', function(e) { // alert("Now you should see this one, assuming you dismissed the first alert"); //}); a.show();
2.可选对话框
var dialog = Titanium.UI.createOptionDialog({ title: '添加人员信息', options: ['成功','失败'], cancel:1 }); dialog.show();
4.自定义对话框
var minDate = new Date(); minDate.setFullYear(2009); minDate.setMonth(0); minDate.setDate(1); var maxDate = new Date(); maxDate.setFullYear(2009); maxDate.setMonth(11); maxDate.setDate(31); var value = new Date(); value.setFullYear(2009); value.setMonth(0); value.setDate(1); var view=Ti.UI.createView({ height:100, width:100 }); var picker = Ti.UI.createPicker({ type:Ti.UI.PICKER_TYPE_DATE_AND_TIME, minDate:minDate, maxDate:maxDate, value:value }); // turn on the selection indicator (off by default) picker.selectionIndicator = true; view.add(picker); var dialog = Titanium.UI.createAlertDialog({ title:'添加人员信息', message:"人员添加成功", androidView:view }); dialog.show();
效果如下:
发送邮件对话框
var emailDialog = Titanium.UI.createEmailDialog(); if (!emailDialog.isSupported()) { Ti.UI.createAlertDialog({ title:'Error', message:'Email not available' }).show(); return; } emailDialog.setSubject('Hello from Titanium!'); emailDialog.setToRecipients(['foo@yahoo.com']); emailDialog.setCcRecipients(['bar@yahoo.com']); emailDialog.setBccRecipients(['blah@yahoo.com']); if (Ti.Platform.name == 'iPhone OS') { emailDialog.setMessageBody('<b>Appcelerator Titanium Rocks!</b>å'); emailDialog.setHtml(true); emailDialog.setBarColor('#336699'); } else { emailDialog.setMessageBody('Appcelerator Titanium Rocks!'); } // attach a blob emailDialog.addAttachment(event.media); // attach a file var f = Ti.Filesystem.getFile(Titanium.Filesystem.resourcesDirectory, 'cricket.wav'); emailDialog.addAttachment(f); emailDialog.addEventListener('complete',function(e) { if (e.result == emailDialog.SENT) { if (Ti.Platform.osname != 'android') { // android doesn't give us useful result codes. // it anyway shows a toast. alert("message was sent"); } } else { alert("message was not sent. result = " + e.result); } }); emailDialog.open();
发表评论
-
【转】生活中的交互之小户型设计
2012-05-13 13:41 1864编辑:S++小组 在房价高涨的今天,对于年轻的 ... -
【转】网易博客Android客户端 — native+html5移动应用混合开发实践
2012-05-13 13:18 3811项目历程】 历时三个月,经过交互、前端设计、开发、测试 ... -
Phonegap开发Android版本的二维码扫码
2012-05-10 13:00 11913在phonegap中通过二维码实现也是 ... -
Titanium 的Module的开发
2012-05-07 17:59 2986针对Titanium中需要特定的功能可 ... -
Titanium调用小技巧
2012-04-24 12:12 28251.复制粘贴技术 设置粘贴板的内容: Titaniu ... -
Titanium调用Google服务
2012-04-24 11:56 2246ApplicationWindow.js文件内容: ... -
Titanium实现国际化
2012-04-22 18:50 1939我这里介绍的方法就可以解决直接在app ... -
Titanium+JQuery整合
2012-04-18 14:54 2736Titanium和JQuery整合的结构如下: 登 ... -
Titanium实现Menu键相关菜单实现
2012-04-18 13:21 1916Titanium代码实现如下: ... -
Titanium实现相关的报表功能
2012-04-18 13:18 2026报表采用WebView调用本地hmtl实现相关的报表功能 ... -
Titanium数据库SQLite的使用
2012-04-17 16:33 2227在Titanium的Database sqlli ... -
Titanium带Footer和Header的页面的开发
2012-04-17 12:29 1990Titanium实现Footer和 ... -
Titanium开发问题汇总
2012-04-17 08:38 2983安装Titanium过程地址: 在Titanium Stud ... -
跨平台的移动开发框架介绍
2012-04-15 13:29 4632这里说的框架,英文原 ... -
【转】在Titanium开发Android应用时实现底部tabbar
2012-04-08 14:50 2108在Android应用中,默认是把Tabbar放在顶部的, ... -
Mobile UI Design Patterns: 10+ Sites for Inspiration
2012-04-08 14:43 1813mobileUIandroidiOS User ... -
Titanium中SOAPClient访问SOAP协议的WebService
2012-03-16 10:31 2287在Titanium中通过SOAP类库调用SOAP协议 ... -
Titanium中Httpclient访问REST 服务
2012-03-16 09:59 2177Titaniun源代码: // this sets the ... -
Titanium中布局类Titanium.UI.Window.layout
2012-03-16 09:56 2359Titanium.UI.Window.layout Prop ...
相关推荐
5. **talk_talk.pot**:可能设计为对话框形式,鼓励开放沟通和信息交流。 6. **titanium.pot**:钛金属通常代表强度和耐久性,可能暗示商业策略的稳固和长期规划。 7. **sign_of_the_times.pot**:可能涉及当前商业...
Unicode是一种字符集,包含了各种表情符号,使得程序可以正确地处理和显示这些特殊字符。开发者可能还编写了特定的逻辑来解析和渲染这些表情,确保它们在聊天界面中能够正确显示。 在项目结构方面,JavaLanChat-...
LiteXLoader-JS-plugins 主要就是利用 JavaScript 的这种特性,通过插件的形式提供更多的功能模块。 在 LiteXLoader-JS-plugins-main 这个压缩包中,我们可以期待找到 LiteXLoader 插件的核心代码和主要功能。"main...
除在保密期内的保密论文和在技术保护期限内的论文外,允许论文被查阅和借阅,可以公布(包括以电子信息形式刊登)论文的全部内容或中、英文摘要等部分内容。论文的公布(包括以电子信息形式刊登)授权东南大学研究生...