设置页面框架:
部分代码如下:
<DependentLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="$float:singleCardViewHeight"
ohos:width="match_parent">
<Text
ohos:id="$+id:item_content_text"
ohos:height="$float:singleCardViewTextHeight"
ohos:width="match_content"
ohos:align_parent_left="true"
ohos:center_in_parent="true"
ohos:left_margin="$float:singleCardViewLeftMargin"
ohos:text_color="$color:textColorPrimary"
ohos:text_size="$float:textSizeBody1"/>
<Image
ohos:id="$+id:item_right_icon"
ohos:height="match_content"
ohos:width="match_content"
ohos:align_parent_right="true"
ohos:center_in_parent="true"
ohos:image_src="$graphic:icon_right_grey"
ohos:right_margin="$float:singleCardViewRightMargin"/>
<Text
ohos:id="$+id:item_right_content_text"
ohos:height="$float:singleCardViewRightTextHeight"
ohos:width="match_content"
ohos:center_in_parent="true"
ohos:left_of="$id:item_right_icon"
ohos:right_margin="$float:singleCardViewRightTextRightMargin"
ohos:text_color="$color:textColorSecondary"
ohos:text_size="$float:textSizeBody2"/>
</DependentLayout>
页面滞留界面跳转
部分代码如下:
<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_content"
ohos:width="match_parent"
ohos:bottom_margin="$float:margin_common"
ohos:left_margin="$float:breadth_common"
ohos:orientation="horizontal"
ohos:right_margin="$float:breadth_common"
ohos:top_margin="$float:margin_common">
<DirectionalLayout
ohos:height="match_parent"
ohos:width="match_content"
ohos:left_padding="$float:breadth_common"
ohos:orientation="horizontal"
ohos:weight="1">
<Image
ohos:id="$+id:item_icon"
ohos:height="$float:breadth_checkbox_image"
ohos:width="$float:breadth_checkbox_image"
ohos:layout_alignment="vertical_center"
ohos:left_margin="$float:margin_checkbox_image"
ohos:right_margin="$float:breadth_checkbox_image_margin"/>
<DirectionalLayout
ohos:id="$+id:text_layout"
ohos:height="match_content"
ohos:width="match_content"
ohos:orientation="vertical">
<Text
ohos:id="$+id:item_content_text"
ohos:height="match_content"
ohos:width="match_content"
ohos:layout_alignment="left"
ohos:text_size="$float:checkbox_main_text_size"/>
<Text
ohos:id="$+id:item_status_text"
ohos:height="match_content"
ohos:width="match_content"
ohos:layout_alignment="left"
ohos:multiple_lines="true"
ohos:text_size="$float:checkbox_minor_text_size"
ohos:top_margin="$float:margin_between_texts"
/>
</DirectionalLayout>
</DirectionalLayout>
<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:id="$+id:checkbox_layout"
ohos:height="$float:height_checkbox_1"
ohos:width="match_content"
ohos:bottom_margin="$float:margin_common"
ohos:layout_alignment="right"
ohos:orientation="horizontal"
ohos:right_margin="$float:breadth_checkbox"
ohos:top_margin="$float:margin_common">
<Image
ohos:id="$+id:item_right_checkbox"
ohos:height="$float:height_checkbox_image"
ohos:width="$float:width_checkbox_image"
ohos:bottom_margin="$float:margin_common2"
ohos:image_src="$media:Enabled"
ohos:layout_alignment="vertical_center"
ohos:top_margin="$float:margin_common2"
/>
</DirectionalLayout>
</DirectionalLayout>
</DirectionalLayout>
商品框架:
部分代码:
<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_content"
ohos:width="match_parent"
ohos:bottom_margin="$float:margin_common"
ohos:left_margin="$float:breadth_common"
ohos:orientation="horizontal"
ohos:right_margin="$float:breadth_common"
ohos:top_margin="$float:margin_common">
<DirectionalLayout
ohos:height="match_parent"
ohos:width="match_content"
ohos:left_padding="$float:breadth_common"
ohos:orientation="horizontal"
ohos:weight="1">
<Image
ohos:id="$+id:item_icon"
ohos:height="$float:breadth_checkbox_image"
ohos:width="$float:breadth_checkbox_image"
ohos:layout_alignment="vertical_center"
ohos:left_margin="$float:margin_checkbox_image"
ohos:right_margin="$float:breadth_checkbox_image_margin"/>
<DirectionalLayout
ohos:id="$+id:text_layout"
ohos:height="match_content"
ohos:width="match_content"
ohos:orientation="vertical">
<Text
ohos:id="$+id:item_content_text"
ohos:height="match_content"
ohos:width="match_content"
ohos:layout_alignment="left"
ohos:text_size="$float:checkbox_main_text_size"/>
<Text
ohos:id="$+id:item_status_text"
ohos:height="match_content"
ohos:width="match_content"
ohos:layout_alignment="left"
ohos:multiple_lines="true"
ohos:text_size="$float:checkbox_minor_text_size"
ohos:top_margin="$float:margin_between_texts"
/>
</DirectionalLayout>
</DirectionalLayout>
<DirectionalLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:id="$+id:checkbox_layout"
ohos:height="$float:height_checkbox_1"
ohos:width="match_content"
ohos:bottom_margin="$float:margin_common"
ohos:layout_alignment="right"
ohos:orientation="horizontal"
ohos:right_margin="$float:breadth_checkbox"
ohos:top_margin="$float:margin_common">
<Image
ohos:id="$+id:item_right_checkbox"
ohos:height="$float:height_checkbox_image"
ohos:width="$float:width_checkbox_image"
ohos:bottom_margin="$float:margin_common2"
ohos:image_src="$media:Enabled"
ohos:layout_alignment="vertical_center"
ohos:top_margin="$float:margin_common2"
/>
</DirectionalLayout>
完整代码地址:https://gitee.com/jltfcloudcn/jump_to/tree/master/mbty4
原文链接:https://developer.huawei.com/consumer/cn/forum/topic/0201561270740160431?fid=0101303901040230869
原作者:蛟龙腾飞