通过 include 标签来避免代码重复加载

在写代码过程中,有时候我们会加载重复的view布局,来实现界面的统一,以达到程序界面整齐,增强其美感!如果在不同的布局中重复加载相同的布局,这样的做的话不但降低了程序本身的开发的效率,也会使程序的代码产生冗余,程序的执行效率大大降低。所以从开发者的角度来讲,谷歌给我们提供了< include >这个标签来补充上述所提到的不足,增加开发的者的开发效率。其具体方法如下代码所示:

应用< include>标签的父布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

    <include layout="@layout/footview" />

</RelativeLayout>

footview布局文件:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="30dp"
    android:gravity="center_horizontal"
    android:text="@string/hello_world" >
< /TextView >

以上所展示的就是怎样利用< include>标签来加载重复的布局。用起来是非常简单的吧!但是我在这里提出一个问题:就是如果我想要在< include >标签中来控制需要加载布局的控件属性,直接在< include >标签里面添加可以吗?

于是我写以下一段代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

    <include
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="30dp"
        layout="@layout/footview" />

</RelativeLayout>

footview布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" >

</TextView>

大家可以看出:我只是把原先在footview中控件位置两个标签

android:layout_alignParentBottom=”true”
android:layout_marginBottom=”30dp”

放到了< include>这个标签中来控制,按常理说应该实现同样的效果,但真正运行之后发生footview布局的位置没有变化,也就是说在< include >标签中控制布局位置的两句话根本没有起作用。后来查看资料了解到:android的缺陷(Issue)跟踪系统中有一个缺陷。缺陷描述如下:< include>标签失效了,如果想通过< include>标签的属性覆盖被包含的布局所指定的属性是行不通的。必须在< include>标签中同时指定android:layout_width和android:layout_height这个两个属性才可以。

其正确的代码如下:

应用< include>标签的父布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

    <include
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="30dp"
        layout="@layout/footview" />

</RelativeLayout>

footview布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" >

</TextView>

这样的话我们就可以得用< include>标签来控制其子布局的位置。灵活地利用< include>可以帮助我们节省大量的开发时间,也可以提高代码的可读性和程序的开发效率。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值