首页 > 代码库 > android xml布局文件中tools:layout的作用
android xml布局文件中tools:layout的作用
摘要 用最新版本的adt 创建一个基于master/detail flow 模版的app的时候,生成的 activity_item_list.xml 文件中有一个tools:layout属性: fragment xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
用最新版本的adt 创建一个基于master/detail flow 模版的app的时候,生成的activity_item_list.xml
文件中有一个tools:layout属性:
1 2 3 4 5 6 7 8 9 10 | fragment xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" android:id= "@+id/item_list" android:name= "com.example.fragmenttwopanel.ItemListFragment" android:layout_width= "match_parent" android:layout_height= "match_parent" android:layout_marginLeft= "16dp" android:layout_marginRight= "16dp" tools:context= ".ItemListActivity" tools:layout= "@android:layout/list_content" /> |
一开始不明白,后来删掉这个属性之后发现会出现一个提示:
pick preview layout from the "Fragment Layout" context menu
原来tools:layout仅仅是告诉编辑器,Fragment在程序预览的时候该显示成什么样,并不会对apk产生实际作用,是为开发者设计的。
一般来说被xmlns:tools="http://schemas.android.com/tools"
声明的tools作为前缀的属性都不会被编译进去。这个跟上面代码中tools:context
是一样的。
android xml布局文件中tools:layout的作用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。