前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HarmonyOS实战—实现长按事件

HarmonyOS实战—实现长按事件

原创
作者头像
兮动人
修改2021-08-23 11:55:20
1K0
修改2021-08-23 11:55:20
举报
文章被收录于专栏:兮动人的博客兮动人的博客

1. 长按事件

  • 长按事件使用的次数不是很多,但在有些特殊的情况下还是要用到的。
  • 比如:复制一段文字的时候就是长按操作
  • 长按事件和单、双击事件也非常类似
  • 接口名:LongClickedListener

2. 实现案例:长按按钮修改文本内容

  • 新建项目:ListenerApplication3

ability_main

代码语言:txt
复制
<?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:text="text"
        ohos:text_size="100">

    </Text>

    <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

代码语言:txt
复制
package com.xdr630.listenerapplication3.slice;

import com.xdr630.listenerapplication3.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.LongClickedListener {
    //提为成员变量,否则onLongClicked访问不到文本组件,并初始化默认值
    Text text1 = null;

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

        //1.找到文本框组件和按钮组件
        text1 = (Text) findComponentById(ResourceTable.Id_text1);
        Button but1 = (Button) findComponentById(ResourceTable.Id_but1);

        //2.绑定长按事件,点谁就给谁绑定事件
        //当对按钮进行长按操作时,就会执行this本类中onLongClicked方法
        but1.setLongClickedListener(this);
    }

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

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

    @Override
    public void onLongClicked(Component component) {
        //修改文本框的内容
        text1.setText("长按");
    }
}
  • 运行:
    在这里插入图片描述
    在这里插入图片描述
  • 长按按钮后:
    在这里插入图片描述
    在这里插入图片描述

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1. 长按事件
  • 2. 实现案例:长按按钮修改文本内容
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档