<?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">
<!-- 标题行 -->
<DirectionalLayout
ohos:height="wrap_content"
ohos:width="match_parent"
ohos:padding="16vp"
ohos:background_element="#2196F3">
<Text
ohos:height="wrap_content"
ohos:width="wrap_content"
ohos:text="标题"
ohos:text_color="#FFFFFF"
ohos:text_size="20vp" />
</DirectionalLayout>
<!-- 文本区域 -->
<TextField
ohos:height="wrap_content"
ohos:width="match_parent"
ohos:margin="16vp"
ohos:hint="在这里输入文本"
ohos:input_type="textMultiLine"
ohos:max_text_length="1000" />
</DirectionalLayout>
在这个示例中,我们使用了DirectionalLayout,它的orientation属性被设置为vertical,以便垂直地排列子组件。在布局中,有两个子组件:
1. 标题行: 一个嵌套的DirectionalLayout,其background_element属性设置为蓝色,包含一个Text组件用于显示标题。
2. 文本区域: 一个TextField组件,用于输入文本。我们设置了一些属性,如hint用于显示在文本框中的提示信息,input_type为textMultiLine表示支持多行文本输入,max_text_length用于限制输入的最大长度。
你可以根据实际需求调整布局和组件的属性,使其符合你的设计。这只是一个简单的例子,你可以在实际应用中添加更多的组件和样式。
转载请注明出处:http://www.zyzy.cn/article/detail/1457/鸿蒙OS