一、 创建按钮
1. 创建不包含子组件的按钮。
Button通过调用接口来创建,接口调用有以下两种形式:
Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
其中,label用来设置按钮文字,type用于设置Button类型,stateEffect属性设置Button是否开启点击效果。
ButtonType枚举说明
| 名称 | 描述 | 描述 |
|---|---|---|
| Capsule | 胶囊型按钮 | 此类型按钮的圆角自动设置为高度的一半,不支持通过borderRadius属性重新设置圆角。 |
| Circle | 圆形按钮。 | 此类型按钮为圆形,不支持通过borderRadius属性重新设置圆角。 |
| Normal | 普通按钮 | 此类型的按钮默认圆角为0,支持通过borderRadius属性重新设置圆角。 |
| 自定义样式 | |
|---|---|
| 设置边框弧度 | .borderRadius(20) |
| 设置文本样式,默认值:‘#ffffff’ | .fontColor(Color.Pink) |
| 设置背景颜色 | .backgroundColor(0xF55A42) |
| 文本显示字号。默认值:若controlSize的值为:controlSize.NORMAL,取’16fp’,若controlSize的值为:controlSize.SMALL,取’12fp’ | fontSize(value: Length) |
| 文本的字体粗细fontWeight,number类型取值[100, 900],取值间隔为100,取值越大,字体越粗。默认值:400 | fontWeight(value: number ,FontWeight ,string) |
| 文本的字体样式。默认值:FontStyle.Normal。 | fontStyle(value: FontStyle) |
| 设置是否开启按压态显示效果,ture,false | stateEffect(value: boolean) |
| 默认字体’HarmonyOS Sans’,当前支持’HarmonyOS Sans’字体和注册自定义字体。 | fontFamily(value: string / Resource) |
例子
Button('Ok', { type: ButtonType.Normal, stateEffect: true })
.borderRadius(8)
.backgroundColor(0x317aff)
.width(90)
.height(40)
2.创建包含子组件的按钮。
(就是可以设置按钮里边的内容)
Button(options?: {type?: ButtonType, stateEffect?: boolean})
Button({ type: ButtonType.Normal, stateEffect: true }) {
Row() {
Image($r('app.media.loading')).width(20).height(40).margin({ left: 12 })
Text('loading').fontSize(12).fontColor(0xffffff).margin({ left: 5, right: 12 })
}.alignItems(VerticalAlign.Center)
}.borderRadius(8).backgroundColor(0x317aff).width(90).height(40)
3. 场景示例
用于启动操作。
可以用按钮启动任何用户界面元素,按钮会根据用户的操作触发相应的事件。例如,在List容器里通过点击按钮进行页面跳转。
// xxx.ets
import router from '@ohos.router';
@Entry
@Component
struct ButtonCase1 {
@State FurL:router.RouterOptions = {'url':'pages/first_page'}
@State SurL:router.RouterOptions = {'url':'pages/second_page'}
@State TurL:router.RouterOptions = {'url':'pages/third_page'}
build() {
List({ space: 4 }) {
ListItem() {
Button("First").onClick(() => {
router.pushUrl(this.FurL)
})
.width('100%')
}
ListItem() {
Button("Second").onClick(() => {
router.pushUrl(this.SurL)
})
.width('100%')
}
ListItem() {
Button("Third").onClick(() => {
router.pushUrl(this.TurL)
})
.width('100%')
}
}
.listDirection(Axis.Vertical)
.backgroundColor(0xDCDCDC).padding(20)
}
}
用于提交表单。(就是绑定个事件)
在用户登录/注册页面,使用按钮进行登录或注册操作。
// xxx.ets
@Entry
@Component
struct ButtonCase2 {
build() {
Column() {
TextInput({ placeholder: 'input your username' }).margin({ top: 20 })
TextInput({ placeholder: 'input your password' }).type(InputType.Password).margin({ top: 20 })
Button('Register').width(300).margin({ top: 20 })
.onClick(() => {
// 需要执行的操作
})
}.padding(20)
}
}
悬浮按钮(就是加个定位)
在可以滑动的界面,滑动时按钮始终保持悬浮状态。
// xxx.ets
@Entry
@Component
struct HoverButtonExample {
private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
build() {
Stack() {
List({ space: 20, initialIndex: 0 }) {
ForEach(this.arr, (item:number) => {
ListItem() {
Text('' + item)
.width('100%').height(100).fontSize(16)
.textAlign(TextAlign.Center).borderRadius(10).backgroundColor(0xFFFFFF)
}
}, (item:number) => item.toString())
}.width('90%')
Button() {
Image($r('app.media.ic_public_add'))
.width(50)
.height(50)
}
.width(60)
.height(60)
.position({x: '80%', y: 600})
.shadow({radius: 10})
.onClick(() => {
// 需要执行的操作
})
}
.width('100%')
.height('100%')
.backgroundColor(0xDCDCDC)
.padding({ top: 5 })
}
}
1113

被折叠的 条评论
为什么被折叠?



