Android布局基础

Android在xml文件中编写布局信息,标识出所用的控件以及控件属性,控件之间的关系等等,每个控件都是一个View,View的继承结构如下


image.png

总体上可以分为两部分:个体View(如TextView,Button等)与ViewGroup(LinearLayout、RelativeLayout等)。
顾名思义ViewGroup内部可以嵌套其他的View(可以是个体View,也可以是ViewGroup)。
LinearLayout、RelativeLayout、FrameLayout是最常用的布局。

1 LinearLayout线性布局

在数据中需要声明控件的摆放方向是垂直或者是水平,

//垂直
android:orientation="vertical"
//水平
android:orientation="horizontal"

指定方向后控件就会按照顺序依次排放

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button1"
        android:textSize="25sp"/>
    <Button

        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button2"
        android:textSize="25sp"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button3"
        android:textSize="25sp"/>
</LinearLayout>

显示效果


image.png

LinearLayout常用属性:
gravity :确定子控件的位置,取值:

  1. center_vertical 垂直居中
  2. center_horizontal 水平居中
  3. center 居中
  4. right 子类控件位于当前布局的右边
  5. left 子类控件位于当前布局的左边
  6. bottom 子类控件位于当前布局的下面

layout_gravity: 子类控件使用的属性,表明自己在LinearLayout中的位置。取值同上。

layout_weight:子类控件使用的属性,表明自己在LinearLayout中的比重。
例如

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    >
    <Button
        android:id="@+id/button1"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:text="Button1"
        android:textSize="25sp"/>
    <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="Button2"
        android:textSize="25sp"/>
    <Button
        android:id="@+id/button3"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Button3"
        android:textSize="25sp"/>
</LinearLayout>

这里设置Button1,2,3的比重为2:1:1


image.png

2 RelativeLayout相对布局

通过控件的属性来声明控件之间的相对摆放关系。例如将上面的Button2摆放在Button1下面,Button3摆放在Button1的右面。


image.png

对应的xml布局文件为:

<?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"
    >
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button1"
        android:textSize="25sp"/>
    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button2"
        android:layout_below="@id/button1"
        android:textSize="25sp"/>
    <Button
        android:id="@+id/button3"
        android:layout_toRightOf="@id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button3"
        android:textSize="25sp"/>
</RelativeLayout>

Relative常用的属性为:
第一类:boolean值

android:layout_centerHrizontal 水平居中  
android:layout_centerVertical 垂直居中  
android:layout_centerInparent 相对于父元素完全居中  
android:layout_alignParentBottom 贴紧父元素的下边缘  
android:layout_alignParentLeft 贴紧父元素的左边缘  
android:layout_alignParentRight 贴紧父元素的右边缘  
android:layout_alignParentTop 贴紧父元素的上边缘  
android:layout_alignWithParentIfMissing 如果对应的兄弟元素找不到的话就以父元素做参照物 

第二类:引用id

android:layout_below 在某元素的下方  
android:layout_above 在某元素的的上方  
android:layout_toLeftOf 在某元素的左边  
android:layout_toRightOf 在某元素的右边  
android:layout_alignTop 本元素的上边缘和某元素的的上边缘对齐  
android:layout_alignLeft 本元素的左边缘和某元素的的左边缘对齐  
android:layout_alignBottom 本元素的下边缘和某元素的的下边缘对齐  
android:layout_alignRight 本元素的右边缘和某元素的的右边缘对齐 

第三类:像素值(dp dip px)

android:layout_marginBottom 离某元素底边缘的距离  
android:layout_marginLeft 离某元素左边缘的距离  
android:layout_marginRight 离某元素右边缘的距离  
android:layout_marginTop 离某元素上边缘的距离

3 FrameLayout 帧布局

这种布局所有的控件都会摆放在左上角。一般配合Fragment使用,或者自定义View。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    >
    <TextView
        android:id="@+id/view1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:text="view1"
        android:textSize="25sp"/>
    <TextView
        android:id="@+id/view2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="view2"
        android:gravity="center_horizontal"
        android:textSize="25sp"/>
    <TextView
        android:id="@+id/view3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="view3"
        android:gravity="right"
        android:textSize="25sp"/>
</FrameLayout>

这里设置三个TextView的字体gravity分别为左中右。如图可以看出三个控件重叠摆放。


image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352

推荐阅读更多精彩内容