[文章]#HarmonyOS征文#—HarmonyOS实现单击事件流程

阅读量0
0
2
1. 什么是事件?
  • 事件就是可以被识别的操作 。就是可以被文本、按钮、图片等组件识别的操作。
  • 常见的事件有:单击、双击、长按、还有触摸事件
  • 可以给文本、按钮等添加不同的事件。比如添加了单击事件之后,当我们再次点击文本、按钮,就可以运行对应的代码了。
  • 常见的事件有:

2. 单击事件(常用)
  • 单击事件:又叫做点击事件。是开发中使用最多的一种事件,没有之一。
  • 接口名:ClickedListener,又叫:点击事件。
  • 如:当点击后,文字内容就会发送变化

    3. 实现步骤
  • 创建项目名为:ListenerApplication
  • ability_main.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3.     xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4.     ohos:height="match_parent"
  5.     ohos:width="match_parent"
  6.     ohos:alignment="center"
  7.     ohos:orientation="vertical">

  8.     <Button
  9.         ohos:id="$+id:but1"
  10.         ohos:height="match_content"
  11.         ohos:width="match_content"
  12.         ohos:text="点我"
  13.         ohos:text_size="200"
  14.         ohos:background_element="red">
  15.     </Button>

  16. </DirectionalLayout>
复制代码

MainAbilitySlice
  1. package com.example.listenerapplication.slice;

  2. import com.example.listenerapplication.ResourceTable;
  3. import ohos.aafwk.ability.AbilitySlice;
  4. import ohos.aafwk.content.Intent;
  5. import ohos.agp.components.Button;
  6. import ohos.agp.components.Component;

  7. public class MainAbilitySlice extends AbilitySlice {
  8.     @Override
  9.     public void onStart(Intent intent) {
  10.         super.onStart(intent);
  11.         super.setUIContent(ResourceTable.Layout_ability_main);

  12.         //1.找到按钮
  13.         //完整写法:this.findComponentById(ResourceTable.Id_but1);
  14.         //this:本类的对象,指:MainAbilitySlice(子界面对象)
  15.         // 在子界面当中,通过 id 找到对应的组件
  16.         // 用this去调用方法,this可以省略不写
  17.         //findComponentById(ResourceTable.Id_but1);
  18.         //返回一个组件对象(所以组件的父类对象)
  19.         //那么我们在实际写代码的时候,需要向下转型:强转
  20.         Component but1 = (Button) findComponentById(ResourceTable.Id_but1);

  21.         //2.给按钮绑定单击事件,当点击后,就会执行 MyListener 中的方法,点一次执行一次
  22.         // 而方法就是下面点击的内容
  23.         but1.setClickedListener(new MyListener());

  24.     }

  25.     @Override
  26.     public void onActive() {
  27.         super.onActive();
  28.     }

  29.     @Override
  30.     public void onForeground(Intent intent) {
  31.         super.onForeground(intent);
  32.     }
  33. }

  34. class MyListener implements Component.ClickedListener{

  35.     @Override
  36.     public void onClick(Component component) {
  37.         //Component:所有组件的父类
  38.         //component参数: 被点击的组件对象,在这里就表示按你的对象
  39.         //component.setText(); setText是子类特有的方法,需要向下转型:强转
  40.         Button but = (Button) component;
  41.         but.setText("被点了");
  42.     }
  43. }

复制代码

  • 运行:
  • 点击后:

4. 单击事件小节
  • 单击事件:又叫做点击事件。是开发中使用最多的一种事件,没有之一。
  • 实现步骤:
    1.通过id找到组件。
    2.给按钮组件设置单击事件
    3.写一个类实现ClickedListener接口并重写onClick方法。
    4.编写onClick方法体。
  • 【本文正在参与“有奖征文 | HarmonyOS征文大赛”活动】
    https://bbs.elecfans.com/jishu_2098584_1_1.html

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友