共计 4347 个字符,预计需要花费 11 分钟才能阅读完成。
作者:韩茹
公司:程序咖(北京)科技有限公司
鸿蒙巴士专栏作家
AdaptiveBoxLayout 是自适应盒子布局,该布局提供了在不同屏幕尺寸设施上的自适应布局能力,次要用于雷同级别的多个组件须要在不同屏幕尺寸设施上主动调整列数的场景。
- 该布局中的每个子组件都用一个独自的“盒子”装起来,子组件设置的布局参数都是以盒子作为父布局失效,不以整个自适应布局为失效范畴。
- 该布局中每个盒子的宽度固定为布局总宽度除以自适应失去的列数,高度为 match_content,每一行中的所有盒子按高度最高的进行对齐。
- 该布局程度方向是主动分块,因而程度方向不反对 match_content,布局程度宽度仅反对 match_parent 或固定宽度。
- 自适应仅在程度方向进行了主动分块,纵向没有做限度,因而如果某个子组件的高设置为 match_parent 类型,可能导致后续行无奈显示。
一、罕用办法
AdaptiveBoxLayout 布局罕用办法如下。
办法 | 性能 |
---|---|
addAdaptiveRule(int minWidth, int maxWidth, int columns) | 增加一个自适应盒子布局规定。 |
removeAdaptiveRule(int minWidth, int maxWidth, int columns) | 移除一个自适应盒子布局规定。 |
clearAdaptiveRules() | 移除所有自适应盒子布局规定。 |
二、示例代码
在 AdaptiveBoxLayout 中增加和删除自适应盒子布局规定的成果比照如下。
xml 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_parent"
ohos:width="match_parent"
ohos:orientation="vertical">
<!-- 自适应盒子布局 -->
<AdaptiveBoxLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="0vp"
ohos:width="match_parent"
ohos:weight="1"
ohos:id="$+id:adaptive_box_layout"
ohos:background_element="#33FFC0CB"
>
<Text
ohos:height="40vp"
ohos:width="80vp"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="文本 1"
ohos:text_size="18fp" />
<Text
ohos:height="40vp"
ohos:width="80vp"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="文本 2"
ohos:text_size="18fp" />
<Text
ohos:height="match_content"
ohos:width="match_content"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:multiple_lines="true"
ohos:text="AdaptiveBoxLayout, 自适应盒子布局。其中搁置了许多宽度雷同但高度不同的盒子。一行的高度由最高的盒子决定。"
ohos:text_size="18fp" />
<Text
ohos:height="40vp"
ohos:width="80vp"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="文本 4"
ohos:text_size="18fp" />
<Text
ohos:height="40vp"
ohos:width="match_parent"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="程序咖"
ohos:text_size="18fp" />
<Text
ohos:height="40vp"
ohos:width="80vp"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="文本 5"
ohos:text_size="18fp" />
<Text
ohos:height="160vp"
ohos:width="80vp"
ohos:background_element="#FFC0CB"
ohos:margin="10vp"
ohos:padding="10vp"
ohos:text="文本 6"
ohos:text_size="18fp" />
</AdaptiveBoxLayout>
<Button
ohos:id="$+id:add_rule_btn"
ohos:layout_alignment="horizontal_center"
ohos:top_margin="10vp"
ohos:padding="10vp"
ohos:background_element="#A9CFF0"
ohos:height="match_content"
ohos:width="match_content"
ohos:text_size="22fp"
ohos:text="addAdaptiveRule(100, 2000, 3);"/>
<Button
ohos:id="$+id:remove_rule_btn"
ohos:padding="10vp"
ohos:top_margin="10vp"
ohos:layout_alignment="horizontal_center"
ohos:bottom_margin="10vp"
ohos:background_element="#D5D5D5"
ohos:height="match_content"
ohos:width="match_content"
ohos:text_size="22fp"
ohos:text="removeAdaptiveRule(100, 2000, 3);"/>
</DirectionalLayout>
这里最外层咱们抉择定向布局 DirectionalLayout,垂直方向。而后外面放一个自适应盒子布局 AdaptiveBoxLayout,在外面搁置一些 Text 文本框。最上面搁置两个按钮,用于增加自适应规定和移除自适应规定。
初始布局如下:
<img src=”https://img.chengxuka.com/WX20210607-143447@2x.png/mark” alt=”WX20210607-143447@2x” style=”zoom:50%;” />
如果想增加或者删除规定,咱们须要实现按钮的点击事件,所以在对应的 Java 代码中,增加按钮的监听。
关上 MainAbilitySlice.java 文件:
package com.example.adaptiveboxlayout.slice;
import com.example.adaptiveboxlayout.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.AdaptiveBoxLayout;
public class MainAbilitySlice extends AbilitySlice {
@Override
public void onStart(Intent intent) {super.onStart(intent);
super.setUIContent(ResourceTable.Layout_ability_main);
AdaptiveBoxLayout adaptiveBoxLayout = (AdaptiveBoxLayout)findComponentById(ResourceTable.Id_adaptive_box_layout);
findComponentById(ResourceTable.Id_add_rule_btn).setClickedListener((component-> {
// 增加规定
adaptiveBoxLayout.addAdaptiveRule(100, 2000, 3);
// 更新布局
adaptiveBoxLayout.postLayout();}));
findComponentById(ResourceTable.Id_remove_rule_btn).setClickedListener((component-> {
// 移除规定
adaptiveBoxLayout.removeAdaptiveRule(100, 2000, 3);
// 更新布局
adaptiveBoxLayout.postLayout();}));
}
}
AdaptiveBoxLayout, 自适应盒子布局。其中搁置了许多宽度雷同但高度不同的盒子。一行的高度由最高的盒子决定。
点击 addAdaptiveRule(100, 2000, 3) 按钮,增加一个横向上为 3 列的自适应规定,成果如下:
<img src=”https://img.chengxuka.com/WX20210607-143623@2x.png/mark” alt=”WX20210607-143623@2x” style=”zoom:50%;” />
点击成果:
<img src=”https://img.chengxuka.com/adaptivboxyunxngxiaoguo1.gif” alt=”2021-06-07 14.38.02″ style=”zoom:50%;” />
更多内容:
1、社区:鸿蒙巴士 https://www.harmonybus.net/
2、公众号:HarmonyBus
3、技术交换 QQ 群:714518656
4、视频课:https://www.chengxuka.com