`
longgangbai
  • 浏览: 7371622 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Titanium对话框各种形式

 
阅读更多

Titanium.UI.AlertDialog

proxy
Platform Since
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

 

Name Type Summary
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 click event.

 

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 OK button.

 

okid String

 

Key identifying a string in the locale file to use for the ok text.

 

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();
 
分享到:
评论

相关推荐

    ppt模板-商业管理

    5. **talk_talk.pot**:可能设计为对话框形式,鼓励开放沟通和信息交流。 6. **titanium.pot**:钛金属通常代表强度和耐久性,可能暗示商业策略的稳固和长期规划。 7. **sign_of_the_times.pot**:可能涉及当前商业...

    JavaLanChat:JavaLanChat一个简单的基于桌面的Lanchat应用程序,使用Java的swing和socket编程

    Unicode是一种字符集,包含了各种表情符号,使得程序可以正确地处理和显示这些特殊字符。开发者可能还编写了特定的逻辑来解析和渲染这些表情,确保它们在聊天界面中能够正确显示。 在项目结构方面,JavaLanChat-...

    LiteXLoader-JS-plugins:一些LXLJS先行插件

    LiteXLoader-JS-plugins 主要就是利用 JavaScript 的这种特性,通过插件的形式提供更多的功能模块。 在 LiteXLoader-JS-plugins-main 这个压缩包中,我们可以期待找到 LiteXLoader 插件的核心代码和主要功能。"main...

    工程硕士学位论文 基于Android+HTML5的移动Web项目高效开发探究

    除在保密期内的保密论文和在技术保护期限内的论文外,允许论文被查阅和借阅,可以公布(包括以电子信息形式刊登)论文的全部内容或中、英文摘要等部分内容。论文的公布(包括以电子信息形式刊登)授权东南大学研究生...

Global site tag (gtag.js) - Google Analytics