harmonyOS應用-TableLayout佈局
TableLayout佈局
harmonyOS官網網址:https://developer.harmonyos.com
TableLayout使用表格的方式劃分子元件,如下圖示例
在XML檔案中建立TableLayout以及新增元件
<?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="$graphic:color_cyan_element"
ohos:layout_alignment="horizontal_center"
ohos:padding="8vp">
<Text
ohos:id="$+id:table_text_1"
ohos:width="100vp"
ohos:height="50vp"
ohos:background_element="$graphic:color_red_element"
ohos:margin="10vp"
ohos:text_alignment="horizontal_center"
ohos:text_size="30fp"
ohos:text="text_1"
/>
<Text
ohos:id="$+id:table_text_2"
ohos:width="100vp"
ohos:height="50vp"
ohos:background_element="$graphic:color_red_element"
ohos:margin="10vp"
ohos:text_alignment="horizontal_center"
ohos:text_size="30fp"
ohos:text="text_2"
/>
<Text
ohos:id="$+id:table_text_3"
ohos:width="100vp"
ohos:height="50vp"
ohos:background_element="$graphic:color_red_element"
ohos:margin="10vp"
ohos:text_alignment="horizontal_center"
ohos:text_size="30fp"
ohos:text="text_3"
/>
<Text
ohos:id="$+id:table_text_4"
ohos:width="100vp"
ohos:height="50vp"
ohos:background_element="$graphic:color_red_element"
ohos:margin="10vp"
ohos:text_alignment="horizontal_center"
ohos:text_size="30fp"
ohos:text="text_4"
/>
<Text
ohos:id="$+id:table_text_5"
ohos:width="100vp"
ohos:height="50vp"
ohos:background_element="$graphic:color_red_element"
ohos:margin="10vp"
ohos:text_alignment="horizontal_center"
ohos:text_size="30fp"
ohos:text="text_5"
/>
</TableLayout>
預設的排列方式–垂直排列
設定行數和列數
<TableLayout
xmlns:ohos="http://schemas.huawei.com/res/ohos"
ohos:height="match_parent"
ohos:width="match_parent"
ohos:background_element="$graphic:color_cyan_element"
ohos:layout_alignment="horizontal_center"
ohos:padding="8vp"
ohos:row_count="2"
ohos:column_count="2">
</TableLayout>
設定對齊方式alignment_type屬性表設定好像沒有效果-----還不清楚除原有
屬性 | 值效果 |
---|---|
align_edges | 表示子元件邊界對齊,預設對齊方式。 |
align_contents | 表示子元件邊距對齊 |
在XML中設定對齊方式,以”align_contents“為例:ohos:alignment_type="align_contents
相關文章
- HarmonyOS NEXT應用開發—驗證碼佈局
- Flex佈局應用Flex
- HarmonyOS Java UI之DirectionalLayout佈局JavaUI
- Android零基礎入門第29節:善用TableLayout表格佈局,Android
- CSS佈局 --- 自適應佈局CSS
- 關於flex佈局的應用Flex
- 網頁響應式佈局的應用網頁
- flex彈性佈局 響應式佈局Flex
- 三欄佈局之自適應佈局
- Web應用課 2.4 CSS——flex、響應式佈局WebCSSFlex
- 快應用入門--頁面佈局篇
- TRIZ在專利佈局中的應用
- Flutter 應用程式佈局的最佳實踐Flutter
- 三列自適應佈局(聖盃佈局)
- 響應式佈局
- 快應用採坑與flex佈局講解Flex
- 鴻蒙HarmonyOS實戰-ArkUI動畫(佈局更新動畫)鴻蒙UI動畫
- css自適應佈局CSS
- 移動 WEB 開發的佈局方式 ---- 響應式佈局Web
- web 應用開發最佳實踐之一:避免大型、複雜的佈局和佈局抖動Web
- 響應式佈局講解
- 初窺響應式佈局
- MT6169射頻應用說明和佈局指南
- css佈局-float佈局CSS
- CSS佈局 --- 居中佈局CSS
- 2020-12-17 html、css面試題3: 水平垂直居中,左右固定中間自適應 三欄佈局,靜態佈局、自適應佈局、流式佈局、響應式佈局、彈性佈局,IE中常見的相容性問題,清空陣列的方法HTMLCSS面試題陣列
- HarmonyOS應用開發——Hello World
- HarmonyOS:應用隱私保護
- 居中佈局、三欄佈局
- java:佈局方法(流佈局)Java
- qt 佈局---表單佈局QT
- 響應式佈局方法總結
- Power Apps 建立響應式佈局APP
- SAP UI5 應用的響應式佈局特性(Responsiveness)試讀版UI
- CSS佈局之三欄佈局CSS
- CSS佈局 --- 等寬&等高佈局CSS
- CSS 佈局之水平居中佈局CSS
- 彈性佈局(伸縮佈局)