码迷,mamicode.com
首页 > 移动开发 > 详细

Android中文API- <merge/> 标签

时间:2016-04-29 18:10:57      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

Use <merge/> tag



这<merge/>标签,帮助我们在include一个布局的时候,消除多余的View Groups,例如,你的主布局文件是一个竖直的linearlayout。

<Linearyoutxmlns: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="fill_parent"
        android:layout_height="wrap_content"
        android:text="text"/>

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="text"/>

    <include Layout=”@layout/ok_no_pannel”/>


</ Linearyout>


此时:分析以下ok_no_pannel.xml,文件的写法:

<Linearyoutxmlns: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="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/add"/>
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/delete"/>
</ Linearyout >

以上的文件的写法,你会发现一旦include执行完成,你会发现,有一层的LinearLayout是没用的,通过merge标签,我们就可以轻松的解决这个问题。

<merge xmlns:android="http://schemas.android.com/apk/res/android">
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/add"/>
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/delete"/>
</merge>

Now,当你通过include标签将一个布局文件嵌入另一个布局文件中,系统会忽略merge标签,直接将两个button元素放在布局文件中,来代替include标签的位置。


作者有话说:如果您需要Android中文API,请扫一扫下面的二维码,您的关注,就是我的动力。

技术分享

Android中文API- <merge/> 标签

标签:

原文地址:http://blog.csdn.net/nefuyang/article/details/51244056

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!