• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

HarmonyOSPopupDialog实现多选效果

武飞扬头像
Cyril_KI
帮助1

一、场景

  点击Button后弹出多个选项,用户选中其中一个选项后将选项内容显示到Button上。

二、实现效果

学新通

三、代码

semester = (Button) findComponentById(ResourceTable.Id_semester);
semester.setClickedListener(component -> {
    String []items = {"全部", "1", "2"};
    PopupDialog popupDialog = new PopupDialog(getContext(), component);
    RadioContainer radioContainer = new RadioContainer(getContext());
    for (int i = 0; i < 3; i  ) {
        RadioButton radioButton = new RadioButton(getContext());
        radioButton.setText(items[i]);
        radioButton.setWidth(375);
        radioButton.setHeight(75);
        ShapeElement bg = new ShapeElement();
        bg.setRgbColor(RgbColor.fromArgbInt(Color.getIntColor("#85F2DC")));
        bg.setCornerRadius(30);
        radioButton.setBackground(bg);
        radioButton.setTextSize(48);
        radioButton.setTextColorOff(Color.WHITE);
        radioButton.setMarginsLeftAndRight(10, 10);
        radioButton.setMarginsTopAndBottom(10, 10);
        radioButton.setTextAlignment(TextAlignment.LEFT);
        radioButton.setClickedListener(component1 -> {   //关键代码
            semester.setText(radioButton.getText());
            popupDialog.destroy();
        });
        radioContainer.addComponent(radioButton);
    }
    radioContainer.setPadding(10, 10, 10, 10);
    popupDialog.setCustomComponent(radioContainer);   //添加组件
    popupDialog.setHasArrow(true);
    popupDialog.setArrowOffset(25);
    popupDialog.setMode(LayoutAlignment.LEFT | LayoutAlignment.BOTTOM);
    popupDialog.setBackColor(new Color(Color.getIntColor("#EEEEFF")));
    popupDialog.show();
});
学新通

  semester为Button,点击semester就弹出一个PopupDialog。由于要实现多选,所以PopupDialog的Component是一个自定义的RadioContainer,RadioContainer中包含三个选项,需要对其添加点击事件监听器:

radioButton.setClickedListener(component1 -> {
    semester.setText(radioButton.getText());
    popupDialog.destroy();
});

  当我们点击一个RadioButton时,Button会将自己的Text设置为RadioButton的Text,然后退出PopupDialog,达到选择的效果。

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhibacih
系列文章
更多 icon
同类精品
更多 icon
继续加载