当前位置:   article > 正文

HarmonyOS App开发之组件布局类_在使用java语言进行harmonyos应用开发时,常用的开发布局有( )

在使用java语言进行harmonyos应用开发时,常用的开发布局有( )

今天继续分享有关 HarmonyOS 系统的开发组件布局类的知识,我们将在此系统上进行 App 应用开发,主要内容是讲常用的组件布局类有哪些以及它们的使用方式。

分享的逻辑是先学习布局的含义,再讲解应用框架及示例代码的调用逻辑,最后讲解运行效果图,大致是按照这种三步曲的节奏来分享。

第一步:常用组件布局的含义

  1. TableLayout 意为表格布局,也可以称为网格布局,允许我们使用表格的方式来排列组件,也就是行和列的方式。

  2. StackLayout 意为堆叠布局,用于在屏幕上保留一个区域来显示组件,实现特殊的功能。通常,堆叠布局中只应该放置一个子组件,如果存在多个子组件,则显示最新的子组件。

  3. DirectionalLayout(单一方向排列布局)是 Java UI 的一种重要的组件布局,用于将一组组件按照水平或垂直方向排布,能够方便地对齐布局内的组件。【ohos:orientation="vertical" 默认为垂直方向,可以换成ohos:orientation="horizontal"水平方向】

  4. DependentLayout 意为相对位置布局,与 DirectionalLayout 相比较有更多的排布方式,每个组件可以指定相对于其他同级组件的位置,也可以指定相对于父组件的位置。可以使用 DependentLayout 布局来实现更加复杂的UI界面,同时也可以和其他布局相结合组合出需要的UI界面。

第二步:系统框架及代码调用逻辑

系统框架在里面只用图片展示一下,不做详细说明,前期分享的文章:HarmonyOS (鸿蒙操作系统)你值得拥有 有详细说明过,如下:

图片

MainAbility 就是程序的main入口类,这里会调用到 setMainRoute 的方法,传入的是MainAbilitySlice 这个类名称。此类的核心代码为:

  1. 1@Override
  2. 2public void onStart(Intent intent) {
  3. 3    super.onStart(intent);
  4. 4    super.setUIContent(ResourceTable.Layout_ability_main); // 这里实际上是要去加载ability_main.xml 布局文件,这里在前面加上一个Layout_ 是系统要求这样做的,表明这是一个布局文件,布局文件详情在下面有详细列出。
  5. 5Button btn_directional = (Button) findComponentById(ResourceTable.Id_directional_layout); // 这里实际上是在从ability_main.xml 文件中找id 为 directional_layout的元素,并强转为Button类型
  6. 6        if(btn_directional != null){ // 判断非null 
  7. 7            btn_directional.setClickedListener(new Component.ClickedListener() { //给此id 元素设置监听事件
  8. 8                @Override
  9. 9                public void onClick(Component component) {
  10. 10                    present(new DirectionalLayoutSlice(),new Intent()); // 当此id元素被点击时,就去渲染DirectionalLayoutSlice这个类对象,这里的Present()是用来实现不同的page(ability)内的跳转。
  11. 11                }
  12. 12            });
  13. 13        }
  14. 14
  15. 15        Button btn_dependent = (Button) findComponentById(ResourceTable.Id_dependent_layout);
  16. 16        if(btn_dependent!=null){
  17. 17            btn_dependent.setClickedListener(new Component.ClickedListener() {
  18. 18                @Override
  19. 19                public void onClick(Component component) {
  20. 20                    present(new DependentLayoutSlice(),new Intent());
  21. 21                }
  22. 22            });
  23. 23        }
  24. 24
  25. 25        Button btn_stack = (Button) findComponentById(ResourceTable.Id_stack_layout);
  26. 26        if(btn_stack != null){
  27. 27            btn_stack.setClickedListener(new Component.ClickedListener() {
  28. 28                @Override
  29. 29                public void onClick(Component component) {
  30. 30                    present(new StackLayoutSlice(),new Intent());
  31. 31                }
  32. 32            });
  33. 33        }
  34. 34        Button btn_table = (Button) findComponentById(ResourceTable.Id_table_layout);
  35. 35        if(btn_table != null){
  36. 36            btn_table.setClickedListener(new Component.ClickedListener() {
  37. 37                @Override
  38. 38                public void onClick(Component component) {
  39. 39                    present(new TableLayoutSlice(),new Intent());
  40. 40                }
  41. 41            });
  42. 42        }
  43. 43    }

ability_main.xml 详细内容如下:

  1. 1<?xml version="1.0" encoding="utf-8"?>
  2. 2<ScrollView //滚动视图组件
  3. 3    xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. 4    ohos:width="match_parent"
  5. 5    ohos:height="match_parent"
  6. 6    ohos:rebound_effect="true"
  7. 7    ohos:layout_alignment="horizontal_center"> //表示是水平居中
  8. 8    <DirectionalLayout
  9. 9        ohos:width="match_parent"
  10. 10        ohos:height="match_content"
  11. 11        ohos:orientation="vertical">
  12. 12        <Text
  13. 13            ohos:width="match_content"
  14. 14            ohos:height="match_content"
  15. 15            ohos:text="Common layout"
  16. 16            ohos:text_color="#708090"
  17. 17            ohos:top_margin="15vp"
  18. 18            ohos:left_margin="10vp"
  19. 19            ohos:text_size="25fp"/>
  20. 20        <Text
  21. 21            ohos:background_element="#70dbdb"
  22. 22            ohos:width="match_parent"
  23. 23            ohos:height="3"/>
  24. 24        <TableLayout
  25. 25            ohos:width="1080"
  26. 26            ohos:height="match_content"
  27. 27            ohos:orientation="horizontal"
  28. 28            ohos:top_margin="10"
  29. 29            ohos:column_count="2">
  30. 30            <Button
  31. 31                ohos:id="$+id:directional_layout"
  32. 32                ohos:width="500"
  33. 33                ohos:height="120"
  34. 34                ohos:margin="5"
  35. 35                ohos:padding="2"
  36. 36                ohos:text="DirectionalLayout"
  37. 37                ohos:text_size="17fp"/>
  38. 38            <Button
  39. 39                ohos:id="$+id:dependent_layout"
  40. 40                ohos:width="500"
  41. 41                ohos:height="120"
  42. 42                ohos:margin="5"
  43. 43                ohos:padding="2"
  44. 44                ohos:text="DependentLayout"
  45. 45                ohos:text_size="17fp"/>
  46. 46            <Button
  47. 47                ohos:id="$+id:stack_layout"
  48. 48                ohos:width="500"
  49. 49                ohos:height="120"
  50. 50                ohos:margin="5"
  51. 51                ohos:padding="2"
  52. 52                ohos:text="StackLayout"
  53. 53                ohos:text_size="17fp"/>
  54. 54            <Button
  55. 55                ohos:id="$+id:table_layout"
  56. 56                ohos:width="500"
  57. 57                ohos:height="120"
  58. 58                ohos:margin="5"
  59. 59                ohos:padding="2"
  60. 60                ohos:text="TableLayout"
  61. 61                ohos:text_size="17fp"/>
  62. 62        </TableLayout>
  63. 63    </DirectionalLayout>
  64. 64</ScrollView>

接下来当我们点击到id 为Id_directional_layout 这个button时,就会跳转到present(new DirectionalLayoutSlice(),new Intent()); 这个类文件,其文件内容为:

  1. 1public class DirectionalLayoutSlice extends AbilitySlice{
  2. 2    @Override
  3. 3    public void onStart(Intent intent) {
  4. 4        super.onStart(intent);
  5. 5        super.setUIContent(ResourceTable.Layout_directional_layout);
  6. 6    }
  7. 7   }

从代码里面可以看得到,这里面是去渲染了一个directional_layout的页面布局文件。来看下这个文件的内容:

  1. 1<?xml version="1.0" encoding="utf-8"?>
  2. 2<DirectionalLayout
  3. 3    xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. 4    ohos:width="match_parent"
  5. 5    ohos:height="match_parent"
  6. 6    ohos:top_margin="13fp"
  7. 7    ohos:orientation="vertical">
  8. 8    <Text
  9. 9        ohos:width="match_content"
  10. 10        ohos:height="match_content"
  11. 11        ohos:text="道理不光要懂,还要践行"
  12. 12        ohos:text_alignment="center"
  13. 13        ohos:multiple_lines="true"
  14. 14        ohos:layout_alignment="center"
  15. 15        ohos:top_margin="20vp"
  16. 16        ohos:text_size="23vp"/>
  17. 17    <Text
  18. 18        ohos:width="match_parent"
  19. 19        ohos:height="match_content"
  20. 20        ohos:text="1.持续学习可以使你保持自信"
  21. 21        ohos:multiple_lines="true"
  22. 22        ohos:left_margin="20vp"
  23. 23        ohos:top_margin="20vp"
  24. 24        ohos:text_size="18vp"/>
  25. 25    <Text
  26. 26        ohos:width="match_parent"
  27. 27        ohos:height="match_content"
  28. 28        ohos:text="2.别人有背景而你只有背影,你需要努力"
  29. 29        ohos:multiple_lines="true"
  30. 30        ohos:left_margin="20vp"
  31. 31        ohos:top_margin="20vp"
  32. 32        ohos:text_size="18vp"/>
  33. 33    <Text
  34. 34        ohos:width="match_parent"
  35. 35        ohos:height="match_content"
  36. 36        ohos:text="3.你不努力没有人替你坚强"
  37. 37        ohos:multiple_lines="true"
  38. 38        ohos:left_margin="20vp"
  39. 39        ohos:top_margin="20vp"
  40. 40        ohos:text_size="18vp"/>
  41. 41    <Text
  42. 42        ohos:width="match_parent"
  43. 43        ohos:height="match_content"
  44. 44        ohos:text="4.当今注意力是稀缺资源,你应该将注意力放在有价值的事情上"
  45. 45        ohos:multiple_lines="true"
  46. 46        ohos:left_margin="20vp"
  47. 47        ohos:top_margin="20vp"
  48. 48        ohos:text_size="18vp"/>
  49. 49</DirectionalLayout>

其中的每一行就不再做详细解释了,总体的意思是有一个标题头,它居中展示,字体要大一些。然后就是四个带有标签1,2,3,4的文本内容。

第三步:运行后的效果展示
下图是进入的主页面:

图片

下图是点击“DirectionLayout”按钮后的页面:

图片

下图是点击“DependentLayout”按钮后的页面:

图片

下图是点击“StackLayout” 按钮后的页面:

图片

下图是点击“TableLayout”按钮后的页面:

图片

总结:

  1. 由于篇幅有限,此处不再把每一个布局代码详细拿出来说明,通过上面的一个布局示例就能很清楚的了解其中的精髓。

  2. 本人因技术水平有限,如有错误之处望指出,可以给文末的邮箱地址发邮件或后台留言。

  3. 上述代码源码如有需要,可以发邮件来获取。

欢迎关注【无量测试之道】公众号,回复【领取资源】
Python编程学习资源干货、
Python+Appium框架APP的UI自动化、
Python+Selenium框架Web的UI自动化、
Python+Unittest框架API自动化、
资源和代码 免费送啦~
文章下方有公众号二维码,可直接微信扫一扫关注即可。

备注:我的个人公众号已正式开通,致力于测试技术的分享,包含:大数据测试、功能测试,测试开发,API接口自动化、测试运维、UI自动化测试等,微信搜索公众号:“无量测试之道”,或扫描下方二维码:

在这里插入图片描述
添加关注,让我们一起共同成长! 

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

闽ICP备14008679号