电子说
说明:
开发前请熟悉鸿蒙开发指导文档:[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
请使用DevEco Studio 4.0 Beta2及更高版本。如果使用其它版本,可能存在文档与产品功能界面、操作不一致的情况,请以实际功能界面为准。
通过构建一个简单的ArkUI页面跳转示例,快速了解资源创建引用,路由代码编写和UI布局编写等应用开发流程。
在上述工程创建完成后,开发者可在项目中的entry目录下进行代码开发。
创建第一个页面。
1.在第一个页面添加Text组件、Button组件等,并设置其样式。
// index.ets
@Entry
@Component
struct Index {
build() {
Row() {
Column() {
Text()
.fontSize(50)
.fontWeight(FontWeight.Bold)
// 添加按钮,以响应用户点击
Button() {
Text()
.fontSize(30)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor()
.width('40%')
.height('5%')
}
.width('100%')
}
.height('100%')
}
}
// second.ets
@Entry
@Component
struct Second {
build() {
Row() {
Column() {
Text()
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text()
.fontSize(25)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor()
.width('40%')
.height('5%')
}
.width('100%')
}
.height('100%')
}
}
1.定义需要被引用的文字资源:在“ Project ”窗口,点击“ entry > src > main > resources > base > element > string.json ”,打开“ string.json ”文件,加入蓝框的文字资源,如下图展示:
2.定义需要被引用的颜色资源:在“ Project ”窗口,点击“ entry > src > main > resources > base > element > color.json ”,打开“ color.json ”文件,加入蓝框的颜色资源,如下图展示:
3.“ Index.ets ”文件的示例如下:
// index.ets
@Entry
@Component
struct Index {
build() {
Row() {
Column() {
//引用文字资源
Text($r('app.string.homePage_Text'))
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
//引用文字资源
Text($r('app.string.homeClick_value'))
.fontSize(30)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
//引用颜色资源
.backgroundColor($r('app.color.btn_background'))
.width('40%')
.height('5%')
}
.width('100%')
}
.height('100%')
}
}
4.“ Second.ets ”文件的示例如下:
// second.ets
@Entry
@Component
struct Second {
build() {
Row() {
Column() {
//引用文字资源
Text($r('app.string.secondPage_Text'))
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
//引用文字资源
Text($r('app.string.secondClick_value'))
.fontSize(25)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
//引用颜色资源
.backgroundColor($r('app.color.btn_background'))
.width('40%')
.height('5%')
}
.width('100%')
}
.height('100%')
}
}
页面间的导航可以通过[页面路由router]接口来实现。页面路由router根据页面url找到目标页面,从而实现跳转。使用页面路由请导入router模块。
// index.ets
import router from '@ohos.router';
@Entry
@Component
struct Index {
build() {
Row() {
Column() {
Text($r('app.string.homePage_Text'))
.fontSize(50)
.fontWeight(FontWeight.Bold)
// 添加按钮,以响应用户点击
Button() {
Text($r('app.string.homeClick_value'))
.fontSize(30)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor($r('app.color.btn_background'))
.width('40%')
.height('5%')
// 跳转按钮绑定onClick事件,点击时跳转到第二页
.onClick(() = > {
router.pushUrl({ url: 'pages/Second' })
})
}
.width('100%')
}
.height('100%')
}
}
// second.ets
import router from '@ohos.router';
@Entry
@Component
struct Second {
build() {
Row() {
Column() {
Text($r('app.string.secondPage_Text'))
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text($r('app.string.secondClick_value'))
.fontSize(25)
.fontWeight(FontWeight.Bold)
}
.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor($r('app.color.btn_background'))
.width('40%')
.height('5%')
// 跳转按钮绑定onClick事件,点击按钮时返回到第一页
.onClick(() = > {
router.back()
})
}
.width('100%')
}
.height('100%')
}
}
3.无需手动配置新增的第二个页面路由:由于我们选择了用New >Page的方式新建页面,路由表里会自动配置新增的页面路由。
在“ Project ”窗口,打开“ entry > src > main > resources > base > profile ”,在main_pages.json文件中的“src”下自动配置的第二个页面的路由“pages/Second”,示例如下:
{
"src": [
"pages/Index",
"pages/Second"
]
}
HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿
恭喜您已经使用ArkTS语言开发(Stage模型)完成了第一个ArkUI跨平台应用。
审核编辑 黄宇
全部0条评论
快来发表一下你的评论吧 !