在Android界面设计中,有时候需要一个XML主界面需要包含很多的子界面,如果写在同一个XML文件,该文件结构过于复杂,难以维护,因此可以考虑把各个子界面写成独立的XML文件,然后包含到主界面xml文件中,方法如下: |
1 .直接在XML中包含,写法: |
<LinearLayout > |
<include layout= "@layout/xx" /> |
</LinearLayout> |
上面的xx是layout文件夹里面的xx.xml |
2 .使用程序代码实现 |
View view=getLayoutInflater().inflate(R.layout.root, null ); |
LinearLayout layout=(LinearLayout)findViewById(R.id.linearLayout1); |
layout.addView(view); |
或者 最方便的是 |
RelativeLayout syset_main=(RelativeLayout)act.findViewById(R.id.syset_main); |
Inflater.inflate(R.layout.roomcreate, syset_main, true ); |
其中syset_main是父XML,roomcreate是需要添加的子XML |
by: 发表于:2017-10-24 09:18:16 顶(0) | 踩(0) 回复
??
回复评论