HarmonyOS实战—统计按钮点击次数

统计10秒点击的次数

  • 在一定的时间内点击按钮,点击按钮的次数就会记录到 Text 文本中
    在这里插入图片描述

  • 案例实现:

  • 新建项目:StatisticsApplication

ability_main

<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:alignment="center"
    ohos:orientation="vertical">

    <Text
        ohos:id="$+id:text1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:background_element="$graphic:background_ability_main"
        ohos:layout_alignment="horizontal_center"
        ohos:text="$string:mainability_HelloWorld"
        ohos:text_size="40vp"
        />

    <Button
        ohos:id="$+id:but1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="开始"
        ohos:text_size="100"
        ohos:background_element="red"
        >

    </Button>
</DirectionalLayout>

MainAbilitySlice

package com.xdr630.statisticsapplication.slice;

import com.xdr630.statisticsapplication.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.Button;
import ohos.agp.components.Component;
import ohos.agp.components.Text;

public class MainAbilitySlice extends AbilitySlice implements Component.ClickedListener {

    Text text1;
    Button but1;

    @Override
    public void onStart(Intent intent) {
        super.onStart(intent);
        super.setUIContent(ResourceTable.Layout_ability_main);

        //找到组件
        text1 = (Text) findComponentById(ResourceTable.Id_text1);
        but1 = (Button) findComponentById(ResourceTable.Id_but1);

        //给按钮设置单击事件
        but1.setClickedListener(this);

    }

    @Override
    public void onActive() {
        super.onActive();
    }

    @Override
    public void onForeground(Intent intent) {
        super.onForeground(intent);
    }


    //如果flag为true,表示当前按钮是第一次点击
    //如果flag为false,表示当前按钮不是第一次点击
    boolean flag = true;
    long startTime = 0;

    //用来记录点击了多少次
    int count = 0;

    @Override
    public void onClick(Component component) {
        //点一次,计数器就自增一次
        count++;
        //统计10s之类,按了多少次,并把次数展示在文本框
        if (flag){
            //如果当前是第一次点击按钮,记录当前的时间
            startTime = System.currentTimeMillis();
            //当第一次点击之后游戏开始,修改按钮中的文字内容
            but1.setText("请疯狂点我");
            //修改标记,当第二次调用onClick方法时,flag为false,表示第二次点就不是第一次了,就会走else里的代码
            flag = false;
        }else{
            if ((System.currentTimeMillis() - startTime) <= 10000){
                text1.setText(count + "");
            }else {
                but1.setText("结束");
                //取消按钮点击事件,让该按钮不能被点击了
                but1.setClickable(false);
            }
        }
    }
}
  • 运行:
    在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

  • 结束之后就不能再点击了
  • 也可以作进一步扩展,加个重置按钮点击事件,当结束后又可以点击重置按钮重新开始了,就不需要重新运行项目了
  • 【本文正在参与“有奖征文 | HarmonyOS征文大赛”活动】
    https://marketing.csdn.net/p/ad3879b53f4b8b31db27382b5fc65bbc
posted @   兮动人  阅读(194)  评论(0编辑  收藏  举报
编辑推荐:
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 数据库服务器 SQL Server 版本升级公告
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)
· 程序员常用高效实用工具推荐,办公效率提升利器!
历史上的今天:
2020-08-05 Spring Boot入门

喜欢请打赏

扫描二维码打赏

了解更多

点击右上角即可分享
微信分享提示