鸿蒙Java开发模式6:鸿蒙牛年除夕夜TableLayout宫格拜年构建 原创

六合李欣
发布于 2021-2-11 23:19
1.4w浏览
0收藏

1.今天是牛年除夕夜,祝福大家新年快乐,祝福鸿蒙,祝福51CTO越办越好!通过TableLayout布局管理器构建宫格春节祝福语,效果图如下:

鸿蒙Java开发模式6:鸿蒙牛年除夕夜TableLayout宫格拜年构建-鸿蒙开发者社区

 

2.布局文件如下:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:background_element="snow"
    ohos:row_count="3"
    ohos:column_count="2"
    ohos:layout_alignment="center"
    ohos:alignment_type="align_contents"
    ohos:padding="8vp">
    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c1"/>

        <Text
            ohos:id="$+id:text0"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="祝愿"
            ohos:text_size="18fp"
            ohos:text_color="black"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            />

    </DirectionalLayout>

    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image1"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c2"/>
        <Text
            ohos:id="$+id:text1"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="大家"
            ohos:text_size="18fp"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            ohos:text_color="black"

            />

    </DirectionalLayout>



    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image2"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c3"/>

        <Text
            ohos:id="$+id:text2"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="新年"
            ohos:text_size="18fp"
            ohos:text_color="black"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            />

    </DirectionalLayout>

    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image3"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c4"/>

        <Text
            ohos:id="$+id:text3"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="快乐"
            ohos:text_size="18fp"
            ohos:text_color="black"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            />

    </DirectionalLayout>







    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image4"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c5"/>

        <Text
            ohos:id="$+id:text4"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="多子"
            ohos:text_size="18fp"
            ohos:text_color="black"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            />

    </DirectionalLayout>




    <DirectionalLayout
        xmlns:ohos="http://schemas.huawei.com/res/ohos"
        ohos:height="130vp"
        ohos:width="130vp"
        ohos:margin="20vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:orientation="vertical">

        <Image
            ohos:id="$+id:image5"
            ohos:width="300px"
            ohos:height="300px"
            ohos:layout_alignment="center"
            ohos:scale_mode="zoom_center"
            ohos:scale_x="0.8"
            ohos:scale_y="0.8"
            ohos:bottom_margin="3vp"
            ohos:image_src="$media:c6"/>

        <Text
            ohos:id="$+id:text5"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:text="多福"
            ohos:text_size="18fp"
            ohos:text_color="black"
            ohos:layout_alignment="horizontal_center"
            ohos:text_alignment="horizontal_center|bottom"
            />

    </DirectionalLayout>




</TableLayout>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
分类
标签
2
收藏
回复
举报
2
2
2条回复
按时间正序
/
按时间倒序
张荣超_九丘教育
张荣超_九丘教育

别有新意的拜年方式!👍👍👍

回复
2021-2-12 01:22:25
Whyalone
Whyalone

也祝楼主在新的一年里节节高升,技术突飞猛进!!

回复
2021-2-13 22:23:35


回复
    相关推荐