当前位置:   article > 正文

HarmonyOS应用开发基础——双击事件_setdoubleclickedlistener

setdoubleclickedlistener

HarmonyOS应用开发基础

双击事件

首先在ability_main.xml中添加一个Button和Text。`

 <Button
        ohos:id="$+id:but1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="点我"
        ohos:text_size="200"
        ohos:background_element="red"
        />    
        <Text
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:id="$+id:text1"
        ohos:text="text"
        ohos:text_size="100"
        />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

实现步骤

1.通过id找到组件
        Button but1=(Button)findComponentById(ResourceTable.Id_but1);
        text1=(Text)findComponentById(ResourceTable.Id_text1);
  • 1
  • 2
2.给按钮组件添加双击事件
but1.setDoubleClickedListener(this);
  • 1
3.本类实现DoubleClickedListener接口重写
public class MainAbilitySlice extends AbilitySlice implements  Component.DoubleClickedListener{...}
  • 1
4.重写onDoubleClick方法体
    @Override
    public void onDoubleClick(Component component) {
    //  component 表示点击组件的对象
        text1.setText("被双击了");
    }
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/282137
推荐阅读
相关标签
  

闽ICP备14008679号