Android中将控件放到线性布局的任意位置(四)

1、 先来分析尝试下下

Android中将控件放到线性布局的任意位置(三)中,我们学习了解了线性布局中常用属性layout_gravityorientation之间相“冲突”的地方,以及其为何会有这个“冲突”揣测。在其末尾,我们提出一个需求,详见上文。

  1. 先用layout_gravity练练手
  • 从前面几篇文章中,我们得出结论,当父布局中属性:android:orientation="vertical",子控件的属性:layout_gravity在竖直方向上是会失去作用的。
  • 那么在这样的前提下,我们想让layout_gravity起作用,先把父布局android:orientation="vertical"更改为横向,再在子控件TextView中利用layout_gravity调整TextView的位置,一起看下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="horizontal"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />

    <TextView
        android:layout_gravity="bottom"
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />
</LinearLayout>

看效果:


1.png
  • 如果这个结果对你并不意外,那么说明上一篇文章里已经吃透了。我们似乎达到了目标,但是很显然,这样的情况是,尽管两个TextView一上一下,但是确实分列左右,而我们想要的不过是单纯的一个在顶部,一个在底部而已。而且一个显而易见的问题是,如果我们两个TextView都把宽度设置为match_parent,显然就会有问题了。
  1. 那么用gravity属性来控制。
  • 由于两个TextView的宽高都是wrap_content,也即是和内容(就是显示的字符串啦)一样大小,那么在TextView中是没有用gravity的必要的(该属性是控制自己空间内部“内容”的排布位置,如果控件大小(此次相当于父布局)和内容一样大,那么该属性就没有作用)。
  • 这样看来,我们只能在外层的线性布局使用该属性,看代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:gravity="bottom"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />

    <TextView
        android:layout_gravity="bottom"
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />
</LinearLayout>

我们将orientation改为竖直方向,并在线性布局中设置android:gravity="bottom"
看效果:

2.png

这个结果你也应该预料到的,否则请细看前面三篇文章。(在zhiqian设置android:gravity="bottom"之前,两者从上到下,排在屏幕顶部的),现在效果是从上到下,排在底部。

  • 那么我们发现,似乎想要第一个TextView排在屏幕顶部,第二个TextView排在屏幕底部是完成不了的,我们陷入僵局了……?!
  • 办法必然是有的,不然我费什么话啊。

先认识认识layout_weight

  • 看见了吗,layout开头,说明是对当前控件起作用的,一如layout_width,layout_height,layout_gravity等,都是对当前布局起作用。至于“weight”是重量……那么结合起来似布局的……比重?正确,看代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:gravity="bottom"
    >
    <TextView
        android:layout_weight="1"
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />

    <TextView
        android:layout_weight="1"
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />
</LinearLayout>

效果:

3.png

就是酱紫,属性layout_weight就是布局在父布局所提供的空间中所占的比例,上面代码将父布局提供的空间(所有红色部分)以一比一平分,我们两个TextView宽度都是只有内容宽(包裹内容),并未占满屏幕(所以蓝色、灰色只占了屏幕从上到下的、与其内容宽的部分)。

  • 那么现在的情况下,两个TextView的内容一个显示在顶部,一个显示在底部就简单多了:
    第一个已经在顶部显示了,只需修改第二个TextView就可以:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:gravity="bottom"
    >
    <TextView
        android:layout_weight="1"
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />

    <TextView
        android:layout_weight="1"
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp"
        android:gravity="bottom"/>
</LinearLayout>

效果:

4.png

在上一步情况下,用gravity属性修改第二个TextView中内容的位置就OK了。

  • 至此,我们似乎大功告成了。
  • 但是……似乎,我们太大动干戈了,你看,为了将两个文本内容分别显示在屏幕顶部、底部,我们让蓝色和灰色各占了竖直方向一半的屏幕……过分了哈,在不改变TextView的高度的情况下(layoutweight属性,会让子控件在父布局orientation指定方向上,按比例分配父布局提供的全部空间,相当于改变了该方向上的宽度或者是高度)

正确的姿势是

废话不多,上代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:gravity="bottom"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp" />
    <TextView
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="#00ff00"
        android:text="我就只想占个位置"/>

    <TextView
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二个TextView"
        android:textColor="#ffffff"
        android:textSize="25sp"
        android:gravity="bottom"/>
</LinearLayout>

效果:

5.png

看,既然在父布局是竖直方向布局的情况下,我是不能通过子控件的gravity属性指定该子控件位置,那么我就依你的规则(从上到下排),在需要分别在顶部、底部显示内容的空间之间,添加一个占位置的空间,并让这个控件占满屏幕剩余空间就可以了。layout_weight属性有这么一个巧用:

巧用layout_weight属性,填满空白空间

  • layout_weight属性填满空白空间,是基于这样的事实:
    当父布局(线性布局等具有方向性的布局)内的子控件,如上面所示的三个TextView,只有一个控件设置layout_weight属性时,该控件将默认“挤满”父布局所有空间,其他控件则根据自身设置属性来布局。
  • 所以呢,出现上面的结果,就是这样的原因:
    1、 顶部、底部的TextView按照设置的android:layout_height="wrap_content"布局,而中间的TextView给上下两个TextView留下空间后,便将所有父布局剩余的(在父布局布局方向上的)空间全部占满,这样,它前后两个控件将分别列于屏幕的顶部和底部,同样,水平方向上我们可以:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff0000"
    tools:context=".MainActivity"
    android:orientation="horizontal"
    android:gravity="bottom"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0000ff"
        android:text="第一"
        android:textColor="#ffffff"
        android:textSize="25sp" />
    <TextView
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="#00ff00"
        android:text="只想占个位置"/>

    <TextView
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#555555"
        android:text="第二"
        android:textColor="#ffffff"
        android:textSize="25sp"
        android:gravity="bottom"/>
</LinearLayout>

效果:


6.png
  • 为什么在底部呢,这个问题留给你,代码中有答案的。
    实际运用的时候,背景色是相同的(或者都没有),就可以了,上一下去掉背景的效果。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="horizontal"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第一"
        android:textSize="25sp" />
    <TextView
        android:gravity="center"
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="只想占个位置"/>

    <TextView
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第二"
        android:textSize="25sp"
        android:gravity="bottom"/>
</LinearLayout>

效果:


7.png

代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/ll_one"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical"
    >
    <TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第一"
        android:textSize="25sp" />
    <TextView
        android:gravity="center"
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="只想占个位置"/>

    <TextView
        android:id="@+id/tv_tow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第二"
        android:textSize="25sp"
        android:gravity="bottom"/>
</LinearLayout>
8.png

我做了些小小的改动,大家可以结合图片代码,体会下这几篇文章我们所学得东西。如果你在线性布局中还有什么问题,欢迎留言讨论,我会尽我所能回答问题
over.

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

推荐阅读更多精彩内容