创建DirectionalLayout首先,在XML布局文件中创建一个 DirectionalLayout 作为根布局。 <DirectionalLayout xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:height="match_parent" ohos:width="match_parent" ohos:orientation="vertical"> <!-- 子组件和嵌套布局将在这里定义 --> </DirectionalLayout>嵌套DirectionalLayout在根 DirectionalLayout 中,你可以嵌套多个 DirectionalLayout 来实现更复杂的布局结构。 <DirectionalLayout xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:height="match_parent" ohos:width="match_parent" ohos:orientation="vertical"> <!-- 第一个垂直布局 --> <DirectionalLayout ohos:height="0vp" ohos:weight="1" ohos:width="match_parent" ohos:orientation="vertical"> <!-- 在这里添加子组件 --> </DirectionalLayout> <!-- 第二个水平布局 --> <DirectionalLayout ohos:height="50vp" ohos:width="match_parent" ohos:orientation="horizontal"> <!-- 在这里添加子组件 --> </DirectionalLayout> <!-- 第三个垂直布局 --> <DirectionalLayout ohos:height="0vp" ohos:weight="2" ohos:width="match_parent" ohos:orientation="vertical"> <!-- 在这里添加子组件 --> </DirectionalLayout> </DirectionalLayout>添加子组件在每个嵌套的 DirectionalLayout 中,你可以添加各种子组件,如 Text、Button、Image 等。 <DirectionalLayout xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:height="match_parent" ohos:width="match_parent" ohos:orientation="vertical"> <!-- 第一个垂直布局 --> <DirectionalLayout ohos:height="0vp" ohos:weight="1" ohos:width="match_parent" ohos:orientation="vertical"> <Text ohos:id="$+id:text1" ohos:height="match_content" ohos:width="match_content" ohos:text="Text 1" ohos:text_size="20fp"/> </DirectionalLayout> <!-- 第二个水平布局 --> <DirectionalLayout ohos:height="50vp" ohos:width="match_parent" ohos:orientation="horizontal"> <Button ohos:id="$+id:button1" ohos:height="match_content" ohos:width="match_content" ohos:text="Button 1"/> <Button ohos:id="$+id:button2" ohos:height="match_content" ohos:width="match_content" ohos:text="Button 2"/> </DirectionalLayout> <!-- 第三个垂直布局 --> <DirectionalLayout ohos:height="0vp" ohos:weight="2" ohos:width="match_parent" ohos:orientation="vertical"> <Image ohos:id="$+id:image1" ohos:height="100vp" ohos:width="100vp" ohos:image_src="$media:icon"/> </DirectionalLayout> </DirectionalLayout>调整布局属性使用 ohos:weight 属性可以调整嵌套布局在父布局中的相对大小。使用 ohos:margin 和 ohos:padding 属性可以调整组件之间的间距。运行应用将上述XML布局文件设置为Ability的布局,并在手机或模拟器上运行应用,查看布局效果。
创建DirectionalLayout
首先,在XML布局文件中创建一个 DirectionalLayout 作为根布局。
嵌套DirectionalLayout
在根 DirectionalLayout 中,你可以嵌套多个 DirectionalLayout 来实现更复杂的布局结构。
添加子组件
在每个嵌套的 DirectionalLayout 中,你可以添加各种子组件,如 Text、Button、Image 等。
使用 ohos:weight 属性可以调整嵌套布局在父布局中的相对大小。使用 ohos:margin 和 ohos:padding 属性可以调整组件之间的间距。
将上述XML布局文件设置为Ability的布局,并在手机或模拟器上运行应用,查看布局效果。