HarmonyOS(鸿蒙)——长按事件
Posted 李子捌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HarmonyOS(鸿蒙)——长按事件相关的知识,希望对你有一定的参考价值。
本文已收录于专栏
欢迎各位关注、三连博主的文章及专栏,每周定期更新1-5篇基础文章,共勉!
往期文章汇总-方便有需要的朋友直达:
HarmonyOS(鸿蒙)DevEco Studio开发环境搭建
HarmonyOS(鸿蒙)全网最全资源汇总,吐血整理,赶紧收藏!
HarmonyOS(鸿蒙)——全面入门,始于而不止于HelloWorld
目录
一、实现步骤
实现HarmonyOS(鸿蒙)的长按事件主要分为四个步骤:
- 定义组件,给组件分配唯一ID,之后通过ID定位组件
- 给定义的组件绑定双击事件
- 实现Component.LongClickedListener接口并重写onLongClicked方法
- 实现onLongClicked方法中的具体逻辑,以此完成长按事件的相关业务操作
二、代码实现
2.1 定义页面元素
<?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">
<!-- ohos:id定义组件的id,注意格式固定$+id:xxxx -->
<!--match_content 表示包裹内容,按钮的大小与按钮内的文字大小一致-->
<Text
ohos:id="$+id:text_helloworld"
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"
/>
</DirectionalLayout>
2.2 长按事件实现
package com.liziba.demo.slice;
import com.liziba.demo.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.Component;
import ohos.agp.components.Text;
public class MainAbilitySlice extends AbilitySlice implements Component.LongClickedListener {
@Override
public void onStart(Intent intent) {
super.onStart(intent);
super.setUIContent(ResourceTable.Layout_ability_main);
// 1、通过id查询到组件
Text text = (Text) this.findComponentById(ResourceTable.Id_text_helloworld);
// 2、给组件设置长按事件
text.setLongClickedListener(this);
}
@Override
public void onActive() {
super.onActive();
}
@Override
public void onForeground(Intent intent) {
super.onForeground(intent);
}
/**
* 长按事件触发回调的方法,此方法来自于实现Component.LongClickedListener重写的方法
*
* @param component
*/
@Override
public void onLongClicked(Component component) {
Text text = (Text) component;
text.setText("你好,李子捌!");
}
}
三、测试
长按之前
长按之后
以上是关于HarmonyOS(鸿蒙)——长按事件的主要内容,如果未能解决你的问题,请参考以下文章