• 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();
  • 相关阅读:
    三点定位
    vue中使用UEditor编辑器 -- 2
    网络编程——socket编程
    异常处理
    面向对象进阶
    初识面向对象,面向对象之继承、多态和封装
    Python常用的模块
    函数递归,匿名、内置行数,模块和包,开发规范
    闭包、装饰器decorator、迭代器与生成器、面向过程编程、三元表达式、列表解析与生成器表达式
    Python基础学习——文件操作、函数
  • 原文地址:https://www.cnblogs.com/xiaozhanga4/p/2402801.html
Copyright © 2020-2023  润新知