第四章 - HarmonyOS鸿蒙开发:3分钟Java代码编写第二个页面
2021/5/18 20:56:56
本文主要是介绍第四章 - HarmonyOS鸿蒙开发:3分钟Java代码编写第二个页面,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
作者:孔壹学院、程序咖创始人黎跃春。
免费系统学习请移步:https://chengxuka.com
在上一节中,我们用XML的方式编写了一个包含文本和按钮的页面。这一节我们使用代码的方式编写第二个页面。
- 打开
src/main/java/com/example/myapplication/slice/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.colors.RgbColor; import ohos.agp.components.DependentLayout; import ohos.agp.components.Text; import ohos.agp.components.element.ShapeElement; import ohos.agp.utils.Color; import ohos.agp.components.DependentLayout.LayoutConfig; public class MainAbilitySlice extends AbilitySlice { @Override public void onStart(Intent intent) { super.onStart(intent); // 声明布局 DependentLayout myLayout = new DependentLayout(this); // 设置布局宽高 myLayout.setWidth(LayoutConfig.MATCH_PARENT); myLayout.setHeight(LayoutConfig.MATCH_PARENT); // 设置布局背景为白色 ShapeElement background = new ShapeElement(); background.setRgbColor(new RgbColor(255, 255, 255)); myLayout.setBackground(background); // 创建一个文本 Text text = new Text(this); text.setText("www.chengxuka.com"); text.setWidth(LayoutConfig.MATCH_PARENT); text.setTextSize(100); text.setTextColor(Color.BLACK); // 设置文本的布局 DependentLayout.LayoutConfig textConfig = new DependentLayout.LayoutConfig(LayoutConfig.MATCH_CONTENT, LayoutConfig.MATCH_CONTENT); textConfig.addRule(LayoutConfig.CENTER_IN_PARENT); text.setLayoutConfig(textConfig); myLayout.addComponent(text); super.setUIContent(myLayout); // 加载XML布局 } }
- 运行项目看效果。
入门系列
- HarmonyOS鸿蒙开发:开发环境DevEco Studio安装
- 第二章 - HarmonyOS鸿蒙开发:从Hello Word开始
- 第三章 - HarmonyOS鸿蒙开发:3分钟XML布局编写第一个页面
- 第四章 - HarmonyOS鸿蒙开发:3分钟Java代码编写第二个页面
- 第五章 - HarmonyOS鸿蒙开发:3分钟实现页面跳转
这篇关于第四章 - HarmonyOS鸿蒙开发:3分钟Java代码编写第二个页面的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略