14.鸿蒙HarmonyOS App(JAVA)时钟组件计时器倒计时单选按钮复选框开关switch与开关按钮ToggleButton图像组件示范

本文主要是介绍14.鸿蒙HarmonyOS App(JAVA)时钟组件计时器倒计时单选按钮复选框开关switch与开关按钮ToggleButton图像组件示范,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

鸿蒙HarmonyOS App(JAVA)

时钟组件

计时器

倒计时

单选按钮

复选框

开关switch

开关按钮ToggleButton

图像组件

ability_main.xml

<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayoutxmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:height="match_parent"ohos:width="match_parent"ohos:alignment="center"ohos:background_element="#FC708FF5"ohos:orientation="vertical"><Textohos:id="$+id:text_helloworld"ohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="$string:mainability_HelloWorld"ohos:text_size="30vp"/><Clockohos:id="$+id:clock"ohos:height="match_content"ohos:width="380vp"ohos:background_element="#FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text_size="30vp"/><Textohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="计时器组件(TickTimer)"ohos:text_size="30vp"/><!--正计时 --><TickTimerohos:id="$+id:ticktimer"ohos:height="match_content"ohos:width="380vp"ohos:background_element="#FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text_size="30vp"/><!--倒计时 --><TickTimerohos:id="$+id:ticktimer_countdown"ohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:count_down="true"ohos:text_size="30vp"/><Textohos:height="match_content"ohos:width="380vp"ohos:background_element="#FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text="单选按钮:"ohos:text_size="30vp"/><RadioContainerohos:id="$+id:radio_container"ohos:height="match_content"ohos:width="match_content"ohos:alignment="center"ohos:background_element="#FC708FF5"ohos:layout_alignment="horizontal_center"><RadioButtonohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="第一个选项"ohos:text_size="30vp" /><RadioButtonohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="第二个选项"ohos:text_size="30vp" /><RadioButtonohos:height="match_content"ohos:width="380vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="第三个选项"ohos:text_size="30vp" /></RadioContainer><!--复选框checkbox --><!--开关switch --><!--开关按钮ToggleButton --><Checkboxohos:id="$+id:check_box1"ohos:height="match_content"ohos:width="150vp"ohos:background_element="FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text="复选框1"ohos:text_size="30vp" /><Switchohos:id="$+id:switch1"ohos:height="match_content"ohos:width="100vp"ohos:background_element="$graphic:background_ability_main"ohos:layout_alignment="horizontal_center"ohos:text="复选框1"ohos:text_size="30vp" /><ToggleButtonohos:id="$+id:toggle_btn1"ohos:height="match_content"ohos:width="100vp"ohos:background_element="FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text_state_on="打开"ohos:text_state_off="关闭"ohos:text_size="30vp" /><Textohos:height="match_content"ohos:width="380vp"ohos:background_element="#FF80EF66"ohos:layout_alignment="horizontal_center"ohos:text="图像组件:"ohos:text_size="30vp"/><Imageohos:height="100vp"ohos:width="100vp"ohos:background_element="gray"ohos:layout_alignment="left"ohos:image_src="$media:lucky_grass"ohos:scale_mode="inside"/><!-- ohos:image_src="$graphic:ic_back" --></DirectionalLayout>

 MainAbilitySlice.java

package com.example.myapplication.slice;import com.example.myapplication.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.*;
import ohos.agp.utils.LayoutAlignment;
import ohos.agp.window.dialog.ToastDialog;public class MainAbilitySlice extends AbilitySlice {@Overridepublic void onStart(Intent intent) {super.onStart(intent);super.setUIContent(ResourceTable.Layout_ability_main);//常规计时TickTimer tickTimer =(TickTimer) findComponentById(ResourceTable.Id_ticktimer);tickTimer.start();//倒计时TickTimer tickTimer_countdown =(TickTimer) findComponentById(ResourceTable.Id_ticktimer_countdown);tickTimer_countdown.setBaseTime((System.currentTimeMillis()+30*1000));tickTimer_countdown.setFormat("倒计时:ss秒");tickTimer_countdown.start();Clock clock = (Clock)  findComponentById(ResourceTable.Id_clock);clock.setFormatIn24HourMode("yyyy-MM-dd HH:mm:ss");RadioContainer radioContainer=(RadioContainer) findComponentById(ResourceTable.Id_radio_container);radioContainer.setMarkChangedListener(new RadioContainer.CheckedStateChangedListener() {@Overridepublic void onCheckedChanged(RadioContainer radioContainer, int i) {new ToastDialog(getContext()).setText("选择了第"+(i+1)+"项").setAlignment(LayoutAlignment.CENTER).show();}});ToggleButton toggleButton = (ToggleButton) findComponentById(ResourceTable.Id_toggle_btn1);toggleButton.setClickedListener(new Component.ClickedListener() {@Overridepublic void onClick(Component component) {new ToastDialog(getContext()).setText("点击了:"+toggleButton.getText()).show();}});}@Overridepublic void onActive() {super.onActive();}@Overridepublic void onForeground(Intent intent) {super.onForeground(intent);}
}

图像组件的图像SGV文件转xml方法:

找到svg to xml

 

导入后:

图片使用方法:

工程代码:

待更新。。。

这篇关于14.鸿蒙HarmonyOS App(JAVA)时钟组件计时器倒计时单选按钮复选框开关switch与开关按钮ToggleButton图像组件示范的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/611563

相关文章

SpringBoot结合Docker进行容器化处理指南

《SpringBoot结合Docker进行容器化处理指南》在当今快速发展的软件工程领域,SpringBoot和Docker已经成为现代Java开发者的必备工具,本文将深入讲解如何将一个SpringBo... 目录前言一、为什么选择 Spring Bootjavascript + docker1. 快速部署与

Spring Boot spring-boot-maven-plugin 参数配置详解(最新推荐)

《SpringBootspring-boot-maven-plugin参数配置详解(最新推荐)》文章介绍了SpringBootMaven插件的5个核心目标(repackage、run、start... 目录一 spring-boot-maven-plugin 插件的5个Goals二 应用场景1 重新打包应用

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

Spring Boot集成Druid实现数据源管理与监控的详细步骤

《SpringBoot集成Druid实现数据源管理与监控的详细步骤》本文介绍如何在SpringBoot项目中集成Druid数据库连接池,包括环境搭建、Maven依赖配置、SpringBoot配置文件... 目录1. 引言1.1 环境准备1.2 Druid介绍2. 配置Druid连接池3. 查看Druid监控

Java中读取YAML文件配置信息常见问题及解决方法

《Java中读取YAML文件配置信息常见问题及解决方法》:本文主要介绍Java中读取YAML文件配置信息常见问题及解决方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要... 目录1 使用Spring Boot的@ConfigurationProperties2. 使用@Valu

创建Java keystore文件的完整指南及详细步骤

《创建Javakeystore文件的完整指南及详细步骤》本文详解Java中keystore的创建与配置,涵盖私钥管理、自签名与CA证书生成、SSL/TLS应用,强调安全存储及验证机制,确保通信加密和... 目录1. 秘密键(私钥)的理解与管理私钥的定义与重要性私钥的管理策略私钥的生成与存储2. 证书的创建与

浅析Spring如何控制Bean的加载顺序

《浅析Spring如何控制Bean的加载顺序》在大多数情况下,我们不需要手动控制Bean的加载顺序,因为Spring的IoC容器足够智能,但在某些特殊场景下,这种隐式的依赖关系可能不存在,下面我们就来... 目录核心原则:依赖驱动加载手动控制 Bean 加载顺序的方法方法 1:使用@DependsOn(最直

SpringBoot中如何使用Assert进行断言校验

《SpringBoot中如何使用Assert进行断言校验》Java提供了内置的assert机制,而Spring框架也提供了更强大的Assert工具类来帮助开发者进行参数校验和状态检查,下... 目录前言一、Java 原生assert简介1.1 使用方式1.2 示例代码1.3 优缺点分析二、Spring Fr

java使用protobuf-maven-plugin的插件编译proto文件详解

《java使用protobuf-maven-plugin的插件编译proto文件详解》:本文主要介绍java使用protobuf-maven-plugin的插件编译proto文件,具有很好的参考价... 目录protobuf文件作为数据传输和存储的协议主要介绍在Java使用maven编译proto文件的插件

Java中的数组与集合基本用法详解

《Java中的数组与集合基本用法详解》本文介绍了Java数组和集合框架的基础知识,数组部分涵盖了一维、二维及多维数组的声明、初始化、访问与遍历方法,以及Arrays类的常用操作,对Java数组与集合相... 目录一、Java数组基础1.1 数组结构概述1.2 一维数组1.2.1 声明与初始化1.2.2 访问