【HarmonyOS开发】弹窗交互(promptAction )
创始人
2025-01-09 10:37:43
0

实现效果

  • 点击按钮实现不同方式的弹窗
  • showToast
    在这里插入图片描述
  • showDialog
    在这里插入图片描述
  • showActionMenu
    在这里插入图片描述

代码实现

1.引入’@ohos.promptAction’

import promptAction from '@ohos.promptAction'; 

2.通过promptAction 实现系统既定的弹窗

import promptAction from '@ohos.promptAction';  @Entry @Component struct Show_Page {   @State message: string = 'Hello World';    showToast() {     promptAction.showToast({       message: "登录成功", //显示内容       duration: 2000, //显示持续时间       bottom: 400//设置显示的距离底部位置     })   }    showDialog() {     promptAction.showDialog({       title: "提示",       message: "您确定要删除嘛?",       buttons: [         {           text: "取消",           color: "#000"         },         {           text: "确定",           color: "#000"         }       ]      }).then((data) => {       console.log(data.index.toString());     })   }    showActionMenu() {     promptAction.showActionMenu({       title: "选择字体",       buttons: [         {           text: "测试1",           color: "#ccc"         },         {           text: "测试2",           color: "#ccc"         },         {           text: "测试3",           color: "#ccc"         },         {           text: "测试4",           color: "#ccc"         },         {           text: "测试5",           color: "#ccc"         }       ]     }).then((data) => {       console.log(data.index.toString());     })   }    build() {     Column() {       Button() {         Text("ShowToast").fontColor(Color.White).fontSize(18)       }       .width("90%")       .height(40)       .margin({ top: 40 })       .onClick(() => {         this.showToast();       })        Button() {         Text("ShowDialog").fontColor(Color.White).fontSize(18)       }       .width("90%")       .height(40)       .margin({ top: 40 })       .onClick(() => {         this.showDialog();       })        Button() {         Text("ShowActionMenu").fontColor(Color.White).fontSize(18)       }       .width("90%")       .height(40)       .margin({ top: 40 })       .onClick(() => {         this.showActionMenu();       })     }     .height('100%')     .width('100%')   } } 

相关内容

热门资讯

基于Hadoop的网上购物行为... 有需要本项目的可以私信博主,提供部署和讲解服务!!...
Flink-时间语义 1时间语义flink种设计时间的不同概念:1 Event Time:事件时间ÿ...
Java中的StringBui... 一、StringBuilder的使用方法1. 什么是StringBuilderStringBuild...
Spring Boot集成Sh... Spring Boot集成ShardingSphere详解随着数据量的不断增长,单一数...
踏入大数据的第一天,我先入入门 【转行原因】目前数据每天已亿计算,作为 Java程序员的我已经无法使用常规工具对数据进...
Lua 运算符 Lua 运算符Lua 是一种轻量级的编程语言,广泛用于游戏开发、脚本编写和其他应用程序...
使用Postman调用微信小程... 引言微信小程序已经成为企业连接用户的重要渠道之一。为了吸引用户进入小程序,开发者常常需...
Flink 运行时[Runti... 一、基本组件栈在Flink整个软件架构体系中,同样遵循着分层的架构设计理念࿰...
Lua协程(同步的多线程) 1.coroutine.create( func )创建一个协程,返回co࿰...
camtasia怎么剪掉不用的... 有时我们录制的屏幕内容,并不一定全部需要。那么,屏幕录制的视频怎么裁剪上...