Android中include标签的使用及注意事项

前言

??include标签可以实现在一个layout中引用另一个layout的布局,这通常适合于界面布局复杂、不同界面有共用布局的APP中,比如一个APP的顶部布局、侧边栏布局、底部Tab栏布局、ListView和GridView每一项的布局等,将这些同一个APP中有多个界面用到的布局抽取出来再通过include标签引用,既可以降低layout的复杂度,又可以做到布局重用(布局有改动时只需要修改一个地方就可以了)。

使用方法

??include标签的使用很简单,只需要在布局文件中需要引用其它布局的地方,使用layout="@layout/child_layout"就可以了:

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

??比如,includevoicectrlbarlayout.xml是一个可以提取出来的共用布局:

<?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="61dp"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true">
    <!-- 播放、暂停 -->
    <Button
        android:id="@+id/voiceBtnId"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="100"
        android:background="@drawable/voice_btn_selector"
        android:gravity="center"
        android:onClick="onClick"
        android:text="@string/voice_stop"
        android:textColor="@android:color/white"
        android:textSize="24sp" />
    <!-- 分割线 -->
    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/black" />
    <!-- 听录音 -->
    <Button
        android:id="@+id/listenBtnId"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="100"
        android:background="@drawable/listen_btn_selector"
        android:gravity="center"
        android:onClick="onClick"
        android:text="@string/voice_listen"
        android:textColor="@android:color/white"
        android:textSize="24sp" />
    <!-- 分割线 -->
    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@android:color/black" />
    <!-- 下一个 -->
    <Button
        android:id="@+id/nextBtnId"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="100"
        android:background="@drawable/next_btn_selector"
        android:gravity="center"
        android:onClick="onClick"
        android:text="@string/voice_next"
        android:textColor="@android:color/white"
        android:textSize="24sp" />
</LinearLayout>

??在需要使用该共用布局的地方作如下调用即可:

<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"
    android:background="@drawable/background_bottom_layer">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        android:background="@drawable/background_top_layer">
        <include layout="@layout/include_voice_text_bar_layout" />
        <include layout="@layout/include_voice_ctrl_bar_layout" />
    </RelativeLayout>
</RelativeLayout>

注意事项

  • include和其它组件标签(RelativeLayout、LinearLayout、TextView等)一样,都可以使用layout属性来设置布局文件的宽高和位置,但需要注意的是:必须要复写android:layoutwidthandroid:layoutheight属性才能使用其它属性(比如:android:layoutgrivity、android:layoutalign...、android:id等),这样可以避免include引用layout中的子组件属性影响到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"
        android:background="@drawable/background_bottom_layer">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="10dp"
            android:background="@drawable/background_top_layer">
            <include layout="@layout/include_voice_text_bar_layout" />
            <include
                android:layout_width="match_parent"
                android:layout_height="61dp"
                android:layout_alignParentBottom="true"
                layout="@layout/include_voice_ctrl_bar_layout"
                />
        </RelativeLayout>
    </RelativeLayout>
  • 建议将给include标签调用布局设置宽高、位置、ID等工作放在调用布局的根标签中,这样可以避免给include标签设置属性不当造成的各种问题(之前遇到过给include标签设置android:id属性后,程序实例化子布局中组件失败的现象):

??应该这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bottomBarLayoutId"
    android:layout_width="match_parent"
    android:layout_height="61dp"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true">
    。。。
</LinearLayout>
<include layout="@layout/include_voice_ctrl_bar_layout" />

而不是这样:

<?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">
    。。。
</LinearLayout>
<include
    android:id="@+id/bottomBarLayoutId"
    android:layout_width="match_parent"
    android:layout_height="61dp"
    android:layout_alignParentBottom="true"
    layout="@layout/include_voice_ctrl_bar_layout"
    />

参考资料

时间: 2024-12-30 03:39:06

Android中include标签的使用及注意事项的相关文章

android中include标签使用详解

android中include标签是为了便于控件的覆用的一个很好解决方案. 但是也有一些需要注意的地方,下面是本人在项目中碰到过的一个问题,做此记录,便于以后查看. include标签用法. 1.新建一个xml文件,命名 head.xml head.xml文件内容如下: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.

android中include标签的使用

转自:http://blog.sina.com.cn/s/blog_a364999b01017gxi.html android中include标签是为了便于控件的覆用的一个很好解决方案. 但是也有一些需要注意的地方,下面是本人在项目中碰到过的一个问题,做此记录,便于以后查看. include标签用法. 1.新建一个xml文件,命名 head.xmlhead.xml文件内容如下:<?xml version="1.0" encoding="utf-8"?>&

Android中 include标签的使用

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" style="@style/StyleLayoutMain" mce_style="@style/StyleLayoutMain&

Android中include标签的使用(打开引用布局,隐藏当前布局)

在开发app的时候,有时候一个布局会反复用到,可以把反复用到的布局单独写一个xml文件,什么时候用到就用includ标签引入xml 下面是我写的反复用到的一个xml,里面有2个button,一个TextView和一个ProgressBar layout_progress.xml <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas

二十二、android中application标签说明

<application> <applicationandroid:allowClearUserData=["true" | "false"]android:allowTaskReparenting=["true" | "false"]android:backupAgent="string"android:debuggable=["true" | "false

Android中include的使用

如果在程序中多次用到一部分相同的布局,可以先将这部分布局定义为一个单独的XML,然后在需要的地方通过<include>引入,如下: main.xml ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android=&q

mybatis中&lt;include&gt;标签的作用

MyBatis中sql标签定义SQL片段,include标签引用,可以复用SQL片段 sql标签中id属性对应include标签中的refid属性.通过include标签将sql片段和原sql片段进行拼接成一个完整的sql语句进行执行. <sql id="sqlid"> res_type_id,res_type </sql> <select id="selectbyId" resultType="com.property.vo

Android中&lt;original-package&gt;标签含义

在AndroidManifest.xml中,<original-package>与<manifest package=...>中的区别:<original-package>:应用源码所在包<manifest package=...>:应用运行时的进程名,同样也是R.java所在包名因此,上述两者名称可以不同,一般不写<original-package>,但若写,则需要注意以下几点:1.若<manifest package=...>与&

Android中preference标签的使用

现在做公司任务的时候,经常会要去读Settings的源码,然后发现在xml文件中几乎全是用的preferenceScreen和preferenceCategory标签,很少有用布局和控件的,然后我就自己上网看了很多有关的资料,在此总结下. 首先在res目录下,新建一个命名为xml的文件夹,然后建立一个aaa.xml文件,选择resource标签. 先使用PreferenceCategory,代码如下 http://fl.365jia.cn/info/2277638.htmlhttp://fl.3