0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

HarmonyOS應(yīng)用開發(fā)之Java UI框架

jf_Vqngj70R ? 來源:美男子玩編程 ? 作者:美男子玩編程 ? 2023-08-09 14:02 ? 次閱讀

TableLayout使用表格的方式劃分子組件。

f3555d2e-3669-11ee-9e74-dac502259ad0.png

TableLayout的共有XML屬性繼承自:Component。

TableLayout的自有XML屬性見下表:

屬性名稱 中文描述 取值 取值說明 使用案例
alignment_type 對(duì)齊方式 align_edges 表示TableLayout內(nèi)的組件按邊界對(duì)齊。 ohos:alignment_type="align_edges"
align_contents 表示TableLayout內(nèi)的組件按邊距對(duì)齊。 ohos:alignment_type="align_contents"
column_count 列數(shù) integer類型 可以直接設(shè)置整型數(shù)值,也可以引用integer資源。 ohos:column_count="3"
ohos:column_count="$integer:count"
row_count 行數(shù) integer類型 可以直接設(shè)置整型數(shù)值,也可以引用integer資源。 ohos:row_count="2"
ohos:row_count="$integer:count"
orientation 排列方向 horizontal 表示水平方向布局。 ohos:orientation="horizontal"
vertical 表示垂直方向布局。 ohos:orientation="vertical"

在XML中創(chuàng)建TableLayout,示例代碼如下:

在graphic文件夾下創(chuàng)建Text的背景table_text_bg_element.xml,示例代碼如下:


    ohos:radius="5vp"/>
    

在TableLayout布局中添加子組件。

xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:background_element="#87CEEB"
    ohos:padding="8vp">
    ohos:height="60vp"
        ohos:width="60vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:margin="8vp"
        ohos:text="1"
        ohos:text_alignment="center"
        ohos:text_size="20fp"/>


    

TableLayout默認(rèn)一列多行。

f3715d12-3669-11ee-9e74-dac502259ad0.png

設(shè)置行列數(shù):

...
    ohos:row_count="2"
    ohos:column_count="2">

設(shè)置TableLayout的行為2,列為2效果。

f387031a-3669-11ee-9e74-dac502259ad0.png

在XML中設(shè)置布局排列方向,以“vertical”為例:

...
    ohos:orientation="vertical">
    ...

設(shè)置布局排列方向?yàn)椤皏ertical”的效果。

f3a872b6-3669-11ee-9e74-dac502259ad0.png

TableLayout提供兩種對(duì)齊方式,邊距對(duì)齊“align_contents”、邊界對(duì)齊“align_edges”,默認(rèn)為邊距對(duì)齊“align_contents”。代碼如下:

xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_content"
    ohos:width="match_content"
    ohos:alignment_type="align_contents"
    ohos:background_element="$graphic:layout_borderline"
    ohos:column_count="3"
    ohos:padding="8vp">


    ohos:height="48vp"
        ohos:width="48vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:margin="8vp"
        ohos:padding="8vp"
        ohos:text="1"
        ohos:text_alignment="center"
        ohos:text_size="14fp"/>


    

邊距對(duì)齊效果:

f3bdfd52-3669-11ee-9e74-dac502259ad0.png

將TableLayout的對(duì)齊方式修改為邊界對(duì)齊。

...
ohos:alignment_type="align_edges">
    ...

邊界對(duì)齊效果:

f3cf6dbc-3669-11ee-9e74-dac502259ad0.png

引用graphic文件夾下的背景資源文件為layout_borderline.xml,示例代碼如下:

TableLayout合并單元格的效果可以通過設(shè)置子組件的行列屬性來實(shí)現(xiàn)。

設(shè)置子組件的行列屬性均為2的效果展示:

f3e010d6-3669-11ee-9e74-dac502259ad0.png

在XML中創(chuàng)建TableLayout,并添加子組件,代碼如下:

xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_content"
    ohos:width="match_content"
    ohos:alignment_type="align_edges"
    ohos:background_element="$graphic:layout_borderline"
    ohos:column_count="3"
    ohos:padding="8vp"
    ohos:row_count="3">


    ohos:id="$+id:text_one"
        ohos:height="48vp"
        ohos:width="48vp"
        ohos:background_element="$graphic:table_text_bg_element"
        ohos:margin="16vp"
        ohos:padding="8vp"
        ohos:text="1"
        ohos:text_alignment="center"
        ohos:text_size="14fp"/>


    

Java代碼中設(shè)置子組件的行列屬性,代碼如下:

@Override
    protected void onStart(Intent intent) {
        ...
        Component component = findComponentById(ResourceTable.Id_text_one);
        TableLayout.LayoutConfig tlc = new TableLayout.LayoutConfig(vp2px(72), vp2px(72));
        tlc.columnSpec = TableLayout.specification(TableLayout.DEFAULT, 2);
        tlc.rowSpec = TableLayout.specification(TableLayout.DEFAULT, 2);
        component.setLayoutConfig(tlc);
    }


    private int vp2px(float vp) {
        return AttrHelper.vp2px(vp, getContext());
    }

在設(shè)置子組件的行列屬性時(shí),TableLayout剩余的行數(shù)和列數(shù)必須大于等于該子組件所設(shè)置的行數(shù)和列數(shù)。

目前僅支持Java代碼設(shè)置TableLayout子組件的行列屬性。

在創(chuàng)建子組件的行列屬性時(shí),還可設(shè)置子組件的對(duì)齊方式,修改上述Java代碼如下:

@Override
    protected void onStart(Intent intent) {
        ...
        tlc.columnSpec = TableLayout.specification(TableLayout.DEFAULT, 2, TableLayout.Alignment.ALIGNMENT_FILL);
        tlc.rowSpec = TableLayout.specification(TableLayout.DEFAULT, 2, TableLayout.Alignment.ALIGNMENT_FILL);
        ...
    }

子組件的對(duì)齊方式設(shè)置為ALIGNMENT_FILL的效果:

f3fe30fc-3669-11ee-9e74-dac502259ad0.png

設(shè)置子組件的權(quán)重,代碼如下:

@Override
    protected void onStart(Intent intent) {
        ...
        TableLayout.LayoutConfig tlc = new TableLayout.LayoutConfig(0, vp2px(48));
        tlc.columnSpec = TableLayout.specification(TableLayout.DEFAULT, 1, 1.0f);
        tlc.rowSpec = TableLayout.specification(TableLayout.DEFAULT, 1);


        findComponentById(ResourceTable.Id_text_one).setLayoutConfig(tlc);
        findComponentById(ResourceTable.Id_text_two).setLayoutConfig(tlc);
        findComponentById(ResourceTable.Id_text_three).setLayoutConfig(tlc);
        findComponentById(ResourceTable.Id_text_four).setLayoutConfig(tlc);
        findComponentById(ResourceTable.Id_text_five).setLayoutConfig(tlc);
        findComponentById(ResourceTable.Id_text_six).setLayoutConfig(tlc);
    }

上述代碼將子組件的寬度權(quán)重設(shè)置為1.0,每行子組件會(huì)均分TableLayout的寬度,所以需要設(shè)置TableLayout為固定寬度或match_parent。

ohos:width="match_parent"
    ...>


    ohos:id="$+id:text_one"
        .../>


    

將子組件的寬度權(quán)重設(shè)置為1.0的效果展示:

f4144324-3669-11ee-9e74-dac502259ad0.png

審核編輯:湯梓紅

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • JAVA
    +關(guān)注

    關(guān)注

    19

    文章

    2974

    瀏覽量

    105018
  • XML
    XML
    +關(guān)注

    關(guān)注

    0

    文章

    188

    瀏覽量

    33121
  • 框架
    +關(guān)注

    關(guān)注

    0

    文章

    403

    瀏覽量

    17532
  • HarmonyOS
    +關(guān)注

    關(guān)注

    79

    文章

    1982

    瀏覽量

    30456

原文標(biāo)題:HarmonyOS學(xué)習(xí)路之開發(fā)篇—Java UI框架(Table Layout)

文章出處:【微信號(hào):美男子玩編程,微信公眾號(hào):美男子玩編程】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    HarmonyOS】應(yīng)用開發(fā)文檔

    .com/cn/docs/documentation/doc-guides/start-first-page-0000000000038014Java UI框架添加到相關(guān)API參考的鏈接,方便
    發(fā)表于 10-14 18:04

    HarmonyOS HiSpark AI Camera試用連載 】鴻蒙JS UI介紹

    的FA應(yīng)用,這里的FA應(yīng)用特指JS FA應(yīng)用。使用Java開發(fā)FA應(yīng)用請(qǐng)參考Java UI框架。Framework前端
    發(fā)表于 01-11 20:10

    請(qǐng)教鴻蒙應(yīng)用開發(fā)JAVA UI 框架ProgressBar或者RoundProgressBar怎么實(shí)現(xiàn)滑動(dòng)調(diào)節(jié)

    如題https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ui-java
    發(fā)表于 01-12 15:23

    基于HarmonyOS Java UI使用元數(shù)據(jù)綁定框架實(shí)現(xiàn)UI和數(shù)據(jù)源的綁定

    1. 介紹元數(shù)據(jù)綁定框架是基于HarmonyOS SDK開發(fā)的一套提供UI和數(shù)據(jù)源綁定能力的框架。通過使用元數(shù)據(jù)綁定
    發(fā)表于 08-18 10:23

    基于HarmonyOS Java UI,使用元數(shù)據(jù)綁定框架,實(shí)現(xiàn)UI和數(shù)據(jù)源的綁定

    1. 介紹元數(shù)據(jù)綁定框架是基于HarmonyOS SDK開發(fā)的一套提供UI和數(shù)據(jù)源綁定能力的框架。通過使用元數(shù)據(jù)綁定
    發(fā)表于 09-01 14:54

    鴻蒙應(yīng)用開發(fā)的JS UI框架如何實(shí)現(xiàn)高德地圖的訪問?

    鴻蒙應(yīng)用,現(xiàn)在分為Java UI框架和Ark UI框架,其中JS UI
    發(fā)表于 04-28 11:44

    HarmonyOS自動(dòng)化測(cè)試框架—Hypium

    的API提供查找和操作界面控件的能力,支持開發(fā)基于界面操作的自動(dòng)化測(cè)試腳本。下面為大家一一介紹Hypium的單元測(cè)試框架UI測(cè)試框架。二、單元測(cè)試
    發(fā)表于 08-10 17:13

    4天帶你上手HarmonyOS ArkUI開發(fā)——《HarmonyOS ArkUI入門訓(xùn)練營健康生活實(shí)戰(zhàn)》

    框架實(shí)現(xiàn)。ArkUI采用極簡(jiǎn)的聲明式UI描述界面語法,只需用幾行簡(jiǎn)單直觀的聲明式代碼,即可完成界面功能,內(nèi)置了豐富而精美HarmonyOS Design的UI組件和API,可滿足大部分
    發(fā)表于 01-05 11:49

    HarmonyOS版本下如何基于JS UI框架開發(fā)?

    作者:zhenyu ,華為軟件開發(fā)工程師 在當(dāng)前HarmonyOS版本下,如何基于JS UI框架開發(fā)呢? 1JS
    的頭像 發(fā)表于 07-13 09:24 ?2213次閱讀

    華為開發(fā)HarmonyOS零基礎(chǔ)入門:HarmonyOS UI編程框架快速上手

    華為開發(fā)HarmonyOS零基礎(chǔ)入門:從零開始HarmonyOS UI編程框架快速上手,用于幫助開發(fā)
    的頭像 發(fā)表于 10-23 09:50 ?1907次閱讀
    華為<b class='flag-5'>開發(fā)</b>者<b class='flag-5'>HarmonyOS</b>零基礎(chǔ)入門:<b class='flag-5'>HarmonyOS</b> <b class='flag-5'>UI</b>編程<b class='flag-5'>框架</b>快速上手

    華為開發(fā)HarmonyOS零基礎(chǔ)入門:UI組件設(shè)計(jì)開發(fā)實(shí)踐

    華為開發(fā)HarmonyOS零基礎(chǔ)入門:UI組件設(shè)計(jì)開發(fā)實(shí)踐圖庫應(yīng)用介紹,應(yīng)用數(shù)據(jù)加載顯示模型圖片加載渲染功能快速在其他應(yīng)用上。
    的頭像 發(fā)表于 10-23 10:58 ?1706次閱讀
    華為<b class='flag-5'>開發(fā)</b>者<b class='flag-5'>HarmonyOS</b>零基礎(chǔ)入門:<b class='flag-5'>UI</b>組件設(shè)計(jì)<b class='flag-5'>開發(fā)</b>實(shí)踐

    零基礎(chǔ)入門HarmonyOS-UI編程框架

    HDC 2021華為開發(fā)者分論壇零基礎(chǔ)入門HarmonyOS-UI編程框架
    的頭像 發(fā)表于 10-23 13:09 ?1795次閱讀
    零基礎(chǔ)入門<b class='flag-5'>HarmonyOS-UI</b>編程<b class='flag-5'>框架</b>

    HarmonyOS測(cè)試技術(shù)與實(shí)戰(zhàn)-分布式UI測(cè)試框架

    HDC 2021華為開發(fā)者大會(huì) HarmonyOS測(cè)試技術(shù)與實(shí)戰(zhàn)-分布式UI測(cè)試框架演示
    的頭像 發(fā)表于 10-23 14:49 ?1414次閱讀
    <b class='flag-5'>HarmonyOS</b>測(cè)試技術(shù)與實(shí)戰(zhàn)-分布式<b class='flag-5'>UI</b>測(cè)試<b class='flag-5'>框架</b>

    全面解讀HarmonyOS新一代UI框架

    開發(fā)工具DevEco Studio3.0,以及基于TS/JS語言的API 7,全面提升開發(fā)者體驗(yàn)。 本期,我們要為大家重點(diǎn)介紹HarmonyOS新一代聲明式UI
    的頭像 發(fā)表于 10-29 10:21 ?2764次閱讀
    全面解讀<b class='flag-5'>HarmonyOS</b>新一代<b class='flag-5'>UI</b><b class='flag-5'>框架</b>

    方舟開發(fā)框架(Ark UI)概述及開發(fā)實(shí)戰(zhàn)

    本期要為大家介紹的是ArkUI入門課程——HarmonyOS技術(shù)訓(xùn)練營第四期《方舟開發(fā)框架(Ark UI)概述及開發(fā)實(shí)戰(zhàn)》。相信學(xué)習(xí)完這個(gè)課
    的頭像 發(fā)表于 12-17 14:49 ?8341次閱讀