鸿蒙alert自定义弹窗、时间选择器、文本选择器

alert自定义弹窗效果图

文本滑动选择器效果图

日期选择器

时间选择器

import { BSButton, BSText, BSTextInput } from '../../../components/BSUI'
import { AppBarWidget } from './AppBarWidget'

@Entry
@Component
struct AlertPickerPage {
  @State textValue: string = ''
  @State inputValue: string = 'click me'
  dialogController: CustomDialogController = new CustomDialogController({
    builder: BaseInputTextAlert({
      cancel: this.onCancel,
      confirm: this.onAccept,
      textValue: $textValue,
      inputValue: $inputValue
    }),
    //点击遮障层退出时的回调。
    cancel: this.existApp,
    //是否允许点击遮障层退出。
    autoCancel: false,
    customStyle: true,
    //弹窗在竖直方向上的对齐方式。
    alignment:DialogAlignment.Center
  });
  @State select: number = 2
  private fruits: string[] = ['apple1', 'orange2', 'peach3', 'grape4', 'banana5']
  selectedDate: Date = new Date("2010-1-1")
  private selectTime: Date = new Date('2020-12-25T08:30:00')

  aboutToDisappear() {
    delete this.dialogController,
    this.dialogController = undefined
  }

  onCancel() {
    console.info('Callback when the first button is clicked')
  }

  onAccept() {
    console.info('Callback when the second button is clicked')
  }

  existApp() {
    console.info('Click the callback in the blank area')
  }

  build() {
    Column({space:12}) {
      AppBarWidget({title:'AlertPickerPage'});
      BSButton({title:'自定义弹窗'})
        .height(44)
        .onClick(() => {
          if (this.dialogController != undefined) {
            this.dialogController.open()
          }
        });

      //全局UI方法——文本滑动选择器
      BSButton({title:'文本滑动选择器'})
        .height(40)
        .onClick(() => {
          TextPickerDialog.show({
            range: this.fruits,
            selected: this.select,
            onAccept: (value: TextPickerResult) => {
              // 设置select为按下确定按钮时候的选中项index,这样当弹窗再次弹出时显示选中的是上一次确定的选项
              this.select = value.index
              console.info("TextPickerDialog:onAccept()" + JSON.stringify(value))
            },
            onCancel: () => {
              console.info("TextPickerDialog:onCancel()")
            },
            onChange: (value: TextPickerResult) => {
              console.info("TextPickerDialog:onChange()" + JSON.stringify(value))
            }
          })
        }).margin({bottom:20})
      BSButton({title:'日期'})
        .height(40)
        .onClick(() => {
          DatePickerDialog.show({
            start: new Date("2000-1-1"),
            end: new Date("2100-12-31"),
            selected: this.selectedDate,
            onAccept: (value: DatePickerResult) => {
              // 通过Date的setFullYear方法设置按下确定按钮时的日期,这样当弹窗再次弹出时显示选中的是上一次确定的日期
              this.selectedDate.setFullYear(value.year, value.month, value.day)
              console.info("DatePickerDialog:onAccept()" + JSON.stringify(value))
            },
            onCancel: () => {
              console.info("DatePickerDialog:onCancel()")
            },
            onChange: (value: DatePickerResult) => {
              console.info("DatePickerDialog:onChange()" + JSON.stringify(value))
            }
          })
        }).margin({bottom:20})

      BSButton({title:'时间选择器'})
        .height(40)
        .onClick(() => {
          TimePickerDialog.show({
            selected: this.selectTime,
            useMilitaryTime: true,
            onAccept: (value: TimePickerResult) => {
              this.selectTime.setHours(value.hour, value.minute)
              console.info("TimePickerDialog:onAccept()" + JSON.stringify(value))
            },
            onCancel: () => {
              console.info("TimePickerDialog:onCancel()")
            },
            onChange: (value: TimePickerResult) => {
              console.info("TimePickerDialog:onChange()" + JSON.stringify(value))
            }
          })
        }).margin({bottom:20})

    }.width('100%').margin({ top: 5 })
  }
}

@CustomDialog
struct BaseInputTextAlert {
  @Link textValue: string
  @Link inputValue: string
  controller: CustomDialogController
  cancel: () => void
  confirm: () => void

  build() {
    Column() {
      Blank(20)
      BSText({title:'请输入姓名',fontColor:'#333333',fontSize:15})
      Blank(12)
      BSTextInput({
        text:this.textValue,
        placeholder:'请输入姓名...',
        onChange:(value: string)=>{
          this.textValue = value
        }
      }).height(40).width('90%')
      Blank(12)
      Flex({ justifyContent: FlexAlign.SpaceAround }) {
        BSButton({title:'取消',bgColor:Color.White,fontColor:Color.Black})
          .height(50)
          .onClick(()=>{
            this.controller.close()
            this.cancel()
          })
          .clip(true).borderRadius({bottomLeft:8})
        Divider().vertical(true).strokeWidth(2).height(40)
        BSButton({title:'确认',bgColor:Color.Red,fontColor:Color.White})
          .height(50)
          .onClick(() => {
            this.inputValue = this.textValue
            this.controller.close()
            this.confirm()
          })
          .clip(true).borderRadius({bottomRight:8})
      }
    }.backgroundColor(Color.White).borderRadius(8).margin(20)
  }
}
阅读全文
下载说明:
1、本站所有资源均从互联网上收集整理而来,仅供学习交流之用,因此不包含技术服务请大家谅解!
2、本站不提供任何实质性的付费和支付资源,所有需要积分下载的资源均为网站运营赞助费用或者线下劳务费用!
3、本站所有资源仅用于学习及研究使用,您必须在下载后的24小时内删除所下载资源,切勿用于商业用途,否则由此引发的法律纠纷及连带责任本站和发布者概不承担!
4、本站站内提供的所有可下载资源,本站保证未做任何负面改动(不包含修复bug和完善功能等正面优化或二次开发),但本站不保证资源的准确性、安全性和完整性,用户下载后自行斟酌,我们以交流学习为目的,并不是所有的源码都100%无错或无bug!如有链接无法下载、失效或广告,请联系客服处理!
5、本站资源除标明原创外均来自网络整理,版权归原作者或本站特约原创作者所有,如侵犯到您的合法权益,请立即告知本站,本站将及时予与删除并致以最深的歉意!
6、如果您也有好的资源或教程,您可以投稿发布,成功分享后有站币奖励和额外收入!
7、如果您喜欢该资源,请支持官方正版资源,以得到更好的正版服务!
8、请您认真阅读上述内容,注册本站用户或下载本站资源即您同意上述内容!
原文链接:https://www.shuli.cc/?p=21678,转载请注明出处。
0

评论0

显示验证码
没有账号?注册  忘记密码?