zoukankan      html  css  js  c++  java
  • titanium开发教程0208创建文本域和多行文本输入区

    1

    var win = Titanium.UI.createWindow({
    	title:"Creating Text Fields and Text Areas",
    	backgroundColor:"#FFFFFF",
    	exitOnClose:true
    })
    
    //
    var textField1 = Titanium.UI.createTextField({
    	top:60,
        height:60,
        300,
        borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED, //This is a constant that can be used to style textfields in iOS
        hintText:"This text is called hintText" //Hint text is displayed to the user before the field has been edited
    });
    
    //
    var textField2 = Titanium.UI.createTextField({
    	top:180,
        height:60,
        300,
        borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED, //This is a constant that can be used to style textfields in iOS
        hintText:"This is called hintText" //Hint text is displayed to the user before the field has been edited
    });
    
    //A Text Area is similar to a Text Field except that it will allow multiple lines of text entry
    var textArea = Titanium.UI.createTextArea({
        value:"Text displayed to the user before entry", //This text will remain in place when the user begins to enter text
        height:150,
        300,
        top:250,
        suppressReturn:false,//Use this property to allow the return key to function as a line-return key and not a blur-keyboard key
        borderWidth:1,
        borderColor:"#CCC",
        borderRadius:12
    });
    
    textArea.addEventListener("focus",function(e){
    	//Wipe out the default text on initial focus
    	if(e.value == "Text displayed to the user before entry"){
    		e.source.value = "";
    	}
    });
    
    textArea.addEventListener("blur",function(e){
    	//Restore the defaut text if on blur there is no text in the text area
    	if(e.value == ""){
    		e.source.value = "Text displayed to the user before entry";
    	}
    });
    
    //Add an event listener to the window that allows for the keyboard or input keys to be hidden if the user taps outside a text field
    //Note: each text field to be blurred would be added below
    win.addEventListener("click", function(e){
    	textField1.blur(); // Cause the text field to lose focus, thereby hiding the keyboard (if visible)
    	textField2.blur(); // Cause the text field to lose focus, thereby hiding the keyboard (if visible)
    	textArea.blur(); // Cause the text area to lose focus, thereby hiding the keyboard (if visible)
    });
    
    win.add(textField1);
    win.add(textField2);
    win.add(textArea);
    
    win.open();
  • 相关阅读:
    [转]OllyDBG 入门系列(一)-认识OllyDBG
    .net连接Sql时出现"已成功与服务器建立连接,但是在登录过程中发生错误。 (provider: TCP 提供程序, error: 0 指定的网络名不再可用。) "
    FCKeditor 2.0 的设置.修改.使用(转来的!)
    java中判断字符串是否数字的两种方法
    DATEDIFF 函数
    一个简单的数据库操作类
    Ajax多线程
    SQL Server应用程序中的高级SQL注入
    用ASP.NET开发三层架构【转载】
    下拉菜单选择头像
  • 原文地址:https://www.cnblogs.com/xiaozhanga4/p/2402801.html
Copyright © 2011-2022 走看看