網(wǎng)站首頁 編程語言 正文
線性布局(LinearLayout)
名字 | 含義 |
---|---|
android:id | 設置一個id方便使用 |
android:layout_width | 寬度 |
android:layout_height | 高度 |
android:background | 設置背景顏色 |
android:layout_margin | 設置外邊距 |
android:layout_padding | 設置內(nèi)邊距 |
android:orientation | 設置方向(水平或者垂直) |
練習代碼
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:orientation="vertical" android:layout_height="match_parent"> <LinearLayout android:id="@+id/ll_1" android:layout_width="200dp" android:layout_height="200dp" android:orientation="vertical" android:background="#000000" android:paddingLeft="20dp" android:paddingRight="20dp" android:paddingTop="50dp" android:paddingBottom="10dp"> <View android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FF0033"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="200dp" android:orientation="horizontal" android:background="#0066FF" android:layout_marginTop="20dp" android:layout_marginLeft="15dp" android:layout_marginRight="15dp"> <View android:layout_width="0dp" android:layout_height="match_parent" android:background="#000000" android:layout_weight="1"/> <View android:layout_width="0dp" android:layout_height="match_parent" android:background="#FF0033" android:layout_weight="1"/> <View android:layout_width="0dp" android:layout_height="match_parent" android:background="#55AA99" android:layout_weight="1"/> </LinearLayout> </LinearLayout>
實現(xiàn)效果
相對布局(RelativeLayout)
最常用屬性
名字 | 含義 |
---|---|
android:layout_toLeftOf | 在什么的左邊 |
android:layout_toRightOf | 在什么的右邊 |
android:layout_alignBottom | 跟什么底部對齊 |
android:layout_alignParentBottom | 與父控件底部對齊 |
android:layout_below | 在什么的底部 |
樣例效果
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <View android:id="@+id/view_1" android:layout_width="100dp" android:layout_height="100dp" android:background="#000000" /> <View android:id="@+id/view_2" android:layout_width="100dp" android:layout_height="100dp" android:layout_below="@id/view_1" android:background="#FF0033" /> <LinearLayout android:id="@+id/ll_1" android:layout_width="match_parent" android:layout_height="200dp" android:layout_below="@id/view_2" android:background="#0066FF" android:orientation="horizontal" android:padding="15dp"> <View android:layout_width="100dp" android:layout_height="match_parent" android:background="#FF0033" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000000" android:padding="15dp"> <View android:id="@+id/view_3" android:layout_width="100dp" android:layout_height="match_parent" android:background="#FF9900"/> <View android:id="@+id/view_4" android:layout_width="100dp" android:layout_height="match_parent" android:background="#FF9900" android:layout_toRightOf="@id/view_3" android:layout_marginLeft="10dp"/> </RelativeLayout> </LinearLayout> </RelativeLayout>
實現(xiàn)效果
總結(jié)
原文鏈接:https://blog.csdn.net/qq_44833724/article/details/122921579
相關推薦
- 2021-12-05 使用VS2022在ASP.NET?Core中構(gòu)建輕量級服務_實用技巧
- 2022-06-12 C語言實題講解快速掌握單鏈表上_C 語言
- 2022-10-04 golang中time包之時間間隔格式化和秒、毫秒、納秒等時間戳格式輸出的方法實例_Golang
- 2023-04-01 JQuery動態(tài)生成的按鈕無法觸發(fā)問題及完美解決方法_jquery
- 2022-02-19 SharDingJDBC-4.0.0-RC1按月水平分表
- 2022-03-27 Python?提速器numba_python
- 2022-07-12 C++重載運算符時函數(shù)類型的選擇與類的類型轉(zhuǎn)換
- 2022-09-01 ASP.NET?Core通用主機實現(xiàn)托管服務_實用技巧
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細win安裝深度學習環(huán)境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支