使用include
标签复用布局
- 1.include
标签的作用
假如说我下图的这个布局在很多界面都用到了,我该怎么办?每个页面都写一遍的话,代码太冗余,并且维护难度加大。
<LinearLayout
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"
tools:context=".MainActivity"
android:orientation="vertical">
<include layout="@layout/activity_clude_item"/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="这是中间的东西"/>
</LinearLayout>
上边的这个布局我就用的
include
标签,代码显然更加的整洁,并且增加的布局的复用性,降低了app的使用内存
- 2.include
标签的用法
<include layout="@layout/activity_clude_item"/>
- 1
其中我们使用
layout="@layout/activity_clude_item"
设置复用的布局文件
作者: 一点点征服
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利