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

[Android]Android布局优化之<include />

时间:2017-03-23 01:41:49      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:组件   link   bottom   height   match   encoding   文件   功能   XML   

 

转载请标明:转载于http://www.cnblogs.com/Liuyt-61/p/6602891.html  

-------------------------------------------------------------------------------------------

>将可复用的组件抽取出来并通过include标签使用。

作用: 将共同的组件抽取出来单独放到一个xml文件中,然后使用include标签导入公用布局。

效果:提高UI的制作和复用效率,也能保证制作的UI布局更加规整和易维护。

eg:<include layout="@layout/common_title"/>

common_title.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#000000"
    android:paddingBottom="10dp"
    android:paddingTop="10dp" >

    <TextView
        android:id="@+id/re"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="10dp"
        android:text="返回"
        android:textColor="#ffffff"
        android:textSize="14sp" />

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="布局优化"
        android:textColor="#ffffff"
        android:textSize="18sp" />

    <TextView
        android:id="@+id/fun"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="10dp"
        android:text="功能"
        android:textColor="#ffffff"
        android:textSize="14sp" />

</RelativeLayout>


--------------------------------------
main.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="match_parent"
    android:orientation="vertical" >

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

</LinearLayout>

 

[Android]Android布局优化之<include />

标签:组件   link   bottom   height   match   encoding   文件   功能   XML   

原文地址:http://www.cnblogs.com/Liuyt-61/p/6602891.html

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