赞
踩
TextInput({placeholder?: ResourceStr, text2: ResourceStr})
TextInput({placeholder: '请输入账号或手机号'})
TextInput({text: 'itcast'})
@Entry @Component struct ScrollExample { build() { Column(){ TextInput({placeholder:"请输入账号或手机号"}) .width(150) // 宽 .height(20) // 高 .backgroundColor("36C") // 输入框背景色 .type(InputType.Password) // 输入框类型 .onChange((value:string) => { // value是输入用户的文本内容 }) } } }
名称 | 描述 |
---|---|
Normal | 基本输入模式:支持输入数字、字母、下划线、空格、特殊字符 |
Password | 密码输入模式: 支持输入数字、字母、下划线、空格、特殊字符 |
邮箱地址输入模式:支持数字、字母、下划线以及@符号 | |
Number | 纯数字输入模式 |
PhoneNumber | 电话号码输入模式:支持输入数字、+、-、*、#,长度不限 |
Image(src: string | PixelMap | Resource)
Image(“http://www.baidu.com/xxxx.png”)
权限在module.json5配置文件中声明
{
"module" : {
// ...
"requestPermissions":[
{
"name" : "ohos.permission.INTERNET",
}
}
]
}
}
Image(pixelMapObject)
Image($r(“app.media.app_icon”)) # 不需要带后缀,路径为entry/src/main/resources/base/media/
Image($rawfile(“app_icon.png”)) # 需要加后缀,路径为entry/src/main/resources/rawfile/
Image($rawfile("app_icon.png"))
// 前三条为组件通用属性,即,image组件有这个属性,其他组件,比如Text也有这个属性
.width('100%') # 设置宽度,用百分比需要用字符串格式,也可以使用.width(240)
.height(120)
.borderRadius(5) # 给图片设置圆角
// 该属性为image特有属性
.interpolation(ImageInterpolation.High) # 给图片设置差值,图片特有,消除低像素图片的锯齿
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。