当前位置:   article > 正文

快速入门HarmonyOS的Java UI框架_ohos java ui

ohos java ui

本文档适用于HarmonyOS应用开发的初学者。编写两个简单的页面,实现在第一个页面点击按钮跳转到第二个页面。

注意:运行Hello World在创建工程时,设备类型和模板分别以Wearable和Empty Feature Ability(Java)为例,本文档也基于相同的设备类型和模板进行说明。

编写第一个页面

在Java UI框架中,提供了两种编写布局的方式:在XML中声明UI布局和在代码中创建布局。这两种方式创建出的布局没有本质差别,为了熟悉两种方式,我们将通过XML的方式编写第一个页面,通过代码的方式编写第二个页面。

XML编写页面

在“Project”窗口,打开“entry > src > main > resources > base”,右键点击“base”文件夹,选择“New > Directory”,命名为“layout”。

键点击“layout”文件夹,选择“New > File”,命名为“main_layout.xml”。

 

0000000000011111111.20200917120417.34233295676813690694135023815559:50510917062253:2800:642CEF3864709AF4CA90D6E2D342923D671918358DBAB41F1CDF6076F5F4DABE.png?needInitFileName=true?needInitFileName=true

在“layout”文件夹下可以看到新增了“main_layout.xml”文件。

0000000000011111111.20200917120417.30532054029557177825168732061918:50510917062253:2800:4D84274B6A1E5680B97F231FCA1259AF3D0BDE26FEA1B0E693F096ABA1166CDA.png?needInitFileName=true?needInitFileName=true

打开“main_layout.xml”文件,添加一个文本和一个按钮,示例代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DependentLayout
  3. xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. ohos:width="match_parent"
  5. ohos:height="match_parent"
  6. ohos:background_element="#000000">
  7. <Text
  8. ohos:id="$+id:text"
  9. ohos:width="match_content"
  10. ohos:height="match_content"
  11. ohos:center_in_parent="true"
  12. ohos:text="Hello World"
  13. ohos:text_color="white"
  14. ohos:text_size="32fp"/>
  15. <Button
  16. ohos:id="$+id:button"
  17. ohos:width="match_content"
  18. ohos:height="match_content"
  19. ohos:text_size="19fp"
  20. ohos:text="Next"
  21. ohos:top_padding="8vp"
  22. ohos:bottom_padding="8vp"
  23. ohos:right_padding="80vp"
  24. ohos:left_padding="80vp"
  25. ohos:text_color="white"
  26. ohos:background_element="$graphic:button_element"
  27. ohos:center_in_parent="true"
  28. ohos:align_parent_bottom="true"/>
  29. </DependentLayout>

上述按钮的背景是通过“button_element”来显示的,需要在“base”目录下创建“graphic”文件夹,在“graphic”文件夹中新建一个“button_element.xml”文件。

0000000000011111111.20200917120417.20657229793966139327199575643230:50510917062253:2800:995A3F1C2739D797D7A35B1E965D068C864946BAAFA47541A7690CC377796C91.png?needInitFileName=true?needInitFileName=true

“button_element.xml”的示例代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape
  3. xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. ohos:shape="oval">
  5. <solid
  6. ohos:color="#007DFF"/>
  7. </shape>

说明:如果DevEco Studio提示xmlns字段错误,请忽略,不影响后续操作。

加载XML布局

  1. 在“Project”窗口中,选择“entry > src > main > java > com.example.helloworld > slice” ,打开“MainAbilitySlice.java”文件。
  2. 重写onStart()方法加载XML布局,示例代码如下:
  1. package com.example.myapplication.slice;
  2. import com.example.myapplication.ResourceTable;
  3. import ohos.aafwk.ability.AbilitySlice;
  4. import ohos.aafwk.content.Intent;
  5. public class MainAbilitySlice extends AbilitySlice {
  6. @Override
  7. public void onStart(Intent intent) {
  8. super.onStart(intent);
  9. super.setUIContent(ResourceTable.Layout_main_layout); // 加载XML布局
  10. }
  11. @Override
  12. public void onActive() {
  13. super.onActive();
  14. }
  15. @Override
  16. public void onForeground(Intent intent) {
  17. super.onForeground(intent);
  18. }
  19. }

效果如图所示:

0000000000011111111.20200917120417.17663833033072512715148579643111:50510917062253:2800:374BFE1A78208D3FFA61DC06089E102874789818F097FD8390DDA132FC96A594.png?needInitFileName=true?needInitFileName=true

创建另一个页面

创建Feature Ability

  1. 在“Project”窗口,打开“entry > src > main > java”,右键点击“com.example.myapplication”文件夹,选择“New > Ability > Empty Feature Ability(Java)”。
  2. 配置Ability时,将“Page Name”设置为“SecondAbility”,点击“Finish”。创建完成后,可以看到新增了“SecondAbility”和“SecondAbilitySlice”文件。

0000000000011111111.20200909202823.74930964459566968760104266787246:50510909131850:2800:9C60847A938FFBF2A4F35040DAAEED568A32C98B7B8E5712967F988E3670991F.png?needInitFileName=true?needInitFileName=true?needInitFileName=true

代码编写界面

在上一节中,我们用XML的方式编写了一个包含文本和按钮的页面。为了帮助开发者熟悉在代码中创建布局的方式,接下来我们使用此方式编写第二个页面。

打开 “SecondAbilitySlice.java”文件,添加一个文本,示例代码如下:

  1. package com.example.myapplication.slice;
  2. import ohos.aafwk.ability.AbilitySlice;
  3. import ohos.aafwk.content.Intent;
  4. import ohos.agp.colors.RgbColor;
  5. import ohos.agp.components.DependentLayout;
  6. import ohos.agp.components.DependentLayout.LayoutConfig;
  7. import ohos.agp.components.Text;
  8. import ohos.agp.components.element.ShapeElement;
  9. import ohos.agp.utils.Color;
  10. import static ohos.agp.components.ComponentContainer.LayoutConfig.MATCH_PARENT;
  11. import static ohos.agp.components.ComponentContainer.LayoutConfig.MATCH_CONTENT;
  12. public class SecondAbilitySlice extends AbilitySlice {
  13. @Override
  14. public void onStart(Intent intent) {
  15. super.onStart(intent);
  16. // 声明布局
  17. DependentLayout myLayout = new DependentLayout(this);
  18. // 设置布局大小
  19. myLayout.setWidth(MATCH_PARENT);
  20. myLayout.setHeight(MATCH_PARENT);
  21. ShapeElement element = new ShapeElement();
  22. element.setRgbColor(new RgbColor(0, 0, 0));
  23. myLayout.setBackground(element);
  24. // 创建一个文本
  25. Text text = new Text(this);
  26. text.setText("Nice to meet you.");
  27. text.setWidth(MATCH_PARENT);
  28. text.setTextSize(55);
  29. text.setTextColor(Color.WHITE);
  30. // 设置文本的布局
  31. DependentLayout.LayoutConfig textConfig = new DependentLayout.LayoutConfig(MATCH_CONTENT,MATCH_CONTENT);
  32. textConfig.addRule(LayoutConfig.CENTER_IN_PARENT);
  33. text.setLayoutConfig(textConfig);
  34. myLayout.addComponent(text);
  35. super.setUIContent(myLayout);
  36. }
  37. @Override
  38. public void onActive() {
  39. super.onActive();
  40. }
  41. @Override
  42. public void onForeground(Intent intent) {
  43. super.onForeground(intent);
  44. }
  45. }

实现页面跳转

打开第一个页面的“MainAbilitySlice.java”文件,重写onStart()方法添加按钮的响应逻辑,实现点击按钮跳转到下一页,示例代码如下:

  1. package com.example.myapplication.slice;
  2. import com.example.myapplication.ResourceTable;
  3. import ohos.aafwk.ability.AbilitySlice;
  4. import ohos.aafwk.content.Intent;
  5. import ohos.aafwk.content.Operation;
  6. import ohos.agp.components.*;
  7. public class MainAbilitySlice extends AbilitySlice {
  8. @Override
  9. public void onStart(Intent intent) {
  10. super.onStart(intent);
  11. super.setUIContent(ResourceTable.Layout_main_layout);
  12. Button button = (Button) findComponentById(ResourceTable.Id_button);
  13. if (button != null) {
  14. // 为按钮设置点击回调
  15. button.setClickedListener(new Component.ClickedListener() {
  16. @Override
  17. public void onClick(Component component) {
  18. Intent secondIntent = new Intent();
  19. // 指定待启动FA的bundleName和abilityName
  20. Operation operation = new Intent.OperationBuilder()
  21. .withDeviceId("")
  22. .withBundleName("com.example.myapplication")
  23. .withAbilityName("com.example.myapplication.SecondAbility")
  24. .build();
  25. secondIntent.setOperation(operation);
  26. startAbility(secondIntent); // 通过AbilitySlice的startAbility接口实现启动另一个页面
  27. }
  28. });
  29. }
  30. }
  31. @Override
  32. public void onActive() {
  33. super.onActive();
  34. }
  35. @Override
  36. public void onForeground(Intent intent) {
  37. super.onForeground(intent);
  38. }
  39. }

再次运行项目,效果如图所示:

0000000000011111111.20200909202823.07550176644396519198085461929433:50510909131850:2800:2EB3D0BF4040D4B4A96739CB9A2D2028A3C48E5E9CD806628C0E060B938E4301.png?needInitFileName=true?needInitFileName=true?needInitFileName=true

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/237054?site
推荐阅读
相关标签
  

闽ICP备14008679号