android 如何利用java代码 在一个xml布局中插入另一个xml布局

一个父类布局是用xml1进行布局的,xml1中有3个框架分为上、中、下三个框架,其一个子类也有子布局xml2,欲将xml2布局显示I在xml1布局的中间框架,java代码... 一个父类布局是用xml1进行布局的,xml1中有3个框架分为上、中、下三个框架,
其一个子类也有子布局xml2,欲将xml2布局显示I在xml1布局的中间框架,java代码应该怎样写?
展开
 我来答
sun时空之门
推荐于2017-09-05 · TA获得超过8852个赞
知道小有建树答主
回答量:1559
采纳率:68%
帮助的人:153万
展开全部

Android在xml文件中可使用include包含其他定义好的布局, 可以将多处用到的布局单独出来,然后用include包含进来,这种包含方法相当于把原来布局的一部分代码独立出来,供大家共同使用,也就相当于面向对向中的类的概念差不多。下面我们逐步讲解include的作用。

先看下我们要实现的整体界面:

一、未使用Include时

通常情况下,我们直接就能写出布局代码,下面是所使用的XML代码:

[html] view plaincopy

<?xml version="1.0" encoding="utf-8"?>    

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    

    android:layout_width="fill_parent"    

    android:layout_height="fill_parent"    

    android:orientation="vertical" >    

    <!-- 第一部分 -->  

    <TextView    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:background="#ff0000"  

        android:text="第一个BTN" />    

    <Button    

        android:id="@+id/mybutton"    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:text=" One Button " />    

       

    <!-- 第二部分 -->  

    <TextView    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:background="#00ff00"  

        android:text="第二个BTN" />    

    

    <Button    

        android:id="@+id/mybutton"    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:text=" Second Button " />   

          

  <!-- 最后的按钮 -->  

  <Button    

        android:id="@+id/another"  

        android:layout_width="wrap_content"    

        android:layout_height="wrap_content"    

        android:text=" Another Button " />    

       

</LinearLayout>  

这段代码理解起来一点难度没有,就是几个TextView和几个Button,下面我们用include把这段代码给分割成几个文件,并完成相同的效果;

二、使用Include时

1、先将上面代码标记有“第一部分”的,代码段分离成一个文件(sublayout1.xml);

[html] view plaincopy

<?xml version="1.0" encoding="utf-8"?>    

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    

    android:layout_width="fill_parent"    

    android:layout_height="wrap_content"    

    android:background="#505050"    

    android:orientation="vertical" >    

    

    <TextView    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:background="#ff0000"  

        android:text="第一个BTN" />    

    <Button    

        android:id="@+id/mybutton"    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:text=" One Button " />    

    

</LinearLayout>  

2、再将标记有“第二部分”的代码段,分离成第二个文件(sublayout2.xml):

[html] view plaincopy

<?xml version="1.0" encoding="utf-8"?>  

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  

    android:layout_width="fill_parent"  

    android:layout_height="wrap_content"  

    android:orientation="vertical" >  

    <TextView    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:background="#00ff00"  

        android:text="第二个BTN" />    

    

    <Button    

        android:id="@+id/mybutton"    

        android:layout_width="fill_parent"    

        android:layout_height="wrap_content"    

        android:text=" Second Button " />    

  

</LinearLayout>  

3、主文件中使用include,将上面两个文件包含进去(activity_main.xml);

[html] view plaincopy

<?xml version="1.0" encoding="utf-8"?>    

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    

    android:layout_width="fill_parent"    

    android:layout_height="fill_parent"    

    android:orientation="vertical" >    

    

    <include    

        android:id="@+id/main1"    

        layout="@layout/sublayout1" />    

    

    <include    

        android:id="@+id/main2"    

        layout="@layout/sublayout2" />    

    

    <Button    

        android:id="@+id/another"  

        android:layout_width="wrap_content"    

        android:layout_height="wrap_content"    

        android:text=" Another Button " />    

    

</LinearLayout>  

这样就实现了相同的效果,这里可以看到,include并没有其它的功能,只是把一个XML布局引入进来当做自己的布局,跟直接把引用的这段代码写在include处的效果是一样的。

汽车安全出行
2013-08-02 · TA获得超过490个赞
知道小有建树答主
回答量:416
采纳率:66%
帮助的人:296万
展开全部
你可以通过findViewById的方法
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
shen6983846
2013-08-02 · TA获得超过383个赞
知道小有建树答主
回答量:229
采纳率:0%
帮助的人:257万
展开全部
View itemView = View.inflate(ExamineDataListActivity.this, R.layout.xml2);
TextView text = (TextView) itemView.findViewById(R.id.text);
......

中间框架的 layout.addView(itemView);
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式