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

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境