[文章]HarmonyOS实战—多按钮被点击

阅读量0
0
0
1. 多按钮被点击
  • 新建项目:ListenerApplication5
  • 实现代码:
ability_main
  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.     <Text
  9.         ohos:id="$+id:text1"
  10.         ohos:height="match_content"
  11.         ohos:width="match_content"
  12.         ohos:text="Text"
  13.         ohos:text_size="100">
  14.     </Text>

  15.     <Button
  16.         ohos:id="$+id:login"
  17.         ohos:height="match_content"
  18.         ohos:width="match_content"
  19.         ohos:text="登录"
  20.         ohos:text_size="100"
  21.         ohos:background_element="cyan">
  22.     </Button>

  23.     <Button
  24.         ohos:id="$+id:register"
  25.         ohos:height="match_content"
  26.         ohos:width="match_content"
  27.         ohos:text="注册"
  28.         ohos:text_size="100"
  29.         ohos:background_element="red"
  30.         >

  31.     </Button>

  32. </DirectionalLayout>
复制代码

MainAbilitySlice
  1. package com.xdr630.listenerapplication5.slice;

  2. import com.xdr630.listenerapplication5.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. import ohos.agp.components.Text;

  8. public class MainAbilitySlice extends AbilitySlice implements Component.ClickedListener{

  9.     Text text1;
  10.     Button login;
  11.     Button register;

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

  16.         //1.找到文本、按钮组件
  17.         text1  = (Text) findComponentById(ResourceTable.Id_text1);
  18.         login = (Button) findComponentById(ResourceTable.Id_login);
  19.         register = (Button) findComponentById(ResourceTable.Id_register);

  20.         //2.给按钮绑定事件
  21.         //要对哪个组件做什么操作?
  22.         //要对登录按钮,注册按钮做点击操作
  23.         login.setClickedListener(this);
  24.         register.setClickedListener(this);
  25.     }

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

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

  34.     @Override
  35.     public void onClick(Component component) {
  36.         //先做一个判断
  37.         //判断当前点击的按钮时登录按钮还是注册按钮
  38.         //component:表示当前点击的组件
  39.         if (component == login){
  40.             //表示点击的是登录按钮
  41.             text1.setText("点击了登录按钮");
  42.         }else if (component == register){
  43.             //表示点击的是注册按钮
  44.             text1.setText("点击了注册按钮");
  45.         }
  46.     }

  47. }
复制代码

  • 运行:
  • 点击登录按钮:
  • 点击注册按钮:
  •   
2. 小节
  • 以后要写到登录逻辑或注册逻辑,整体的架构就是跟这个案例类似的,唯一的不同就是把setText内容变成真正的登录逻辑或注册逻辑。
  • 【本文正在参与“有奖征文 | HarmonyOS征文大赛”活动】https://bbs.elecfans.com/jishu_2098584_1_1.html

回帖

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