<include>标签

作者:追风剑情 发布于:2016-6-15 17:40 分类:Android

示例一

include_layout.xml


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <include layout="@layout/sub_layout" />
  7. </LinearLayout>


      你可以重写已包含布局的根视图的layout_*属性,只有android:layout_*属性和android:id属性可以被重写,所有其他属性都会被忽略。新的属性将会被应用到被包含布局的根节点上。


注意:如果你想重写android:layout_*属性中的一个,那么你必须重写android:layout_width和android:layout_height属性。否则,系统将无法使用新布局属性。这也需要适当调整布局容器里包含的视图(例如,一个LinearLayout)。


如果需要重写sub_layout的id、layout_width、layout_height属性,可以这样写


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <include
  7. android:id="@+id/sub_id"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. layout="@layout/sub_layout" />
  11. </LinearLayout>


sub_layout.xml


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:text="Hello World!" >
  6. </TextView>
运行效果


1111111.png

示例二

task_detail.xml


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <include
  7. android:id="@+id/task_name"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginBottom="20dp"
  11. layout="@layout/detail_item"/>
  12. <include
  13. android:id="@+id/task_date"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_marginBottom="20dp"
  17. layout="@layout/detail_item"/>
  18. <include
  19. android:id="@+id/task_desc"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_marginBottom="20dp"
  23. layout="@layout/detail_item"/>
  24. </LinearLayout>


detail_item.xml


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/name"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="horizontal"
  7. android:gravity="center_horizontal"
  8. android:paddingLeft="3dp"
  9. android:paddingRight="3dp" >
  10. <TextView
  11. android:id="@+id/name1"
  12. android:layout_width="0dp"
  13. android:layout_height="wrap_content"
  14. android:layout_weight="1"
  15. android:text="@string/detail_name"/>
  16. <TextView
  17. android:id="@+id/text"
  18. android:layout_width="0dp"
  19. android:layout_height="wrap_content"
  20. android:layout_weight="3"
  21. android:text="Text"/>
  22. </LinearLayout>



注意:Activity.findViewById()与View.findViewById()的区别,View.findViewById()只搜索该视图的子视图。


运行测试

111111.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号