Android LayoutInflater.inflate(int resource, ViewGroup root, boolean attachToRoot)的参数理解

方法inflate(int resource, ViewGroup root, boolean attachToRoot) 中

第一个参数传入布局的资源ID,生成fragment视图,第二个参数是视图的父视图,通常我们需要父
视图来正确配置组件。第三个参数告知布局生成器是否将生成的视图添加给父视图。

我们新建一个项目测试一下:

activity_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" >
 
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="helloworld" />
   
    <FrameLayout
        android:id="@+id/framelayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        
    </FrameLayout>
 
</LinearLayout>

 

fragment_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" >
 
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />
 
</LinearLayout>

 

MainActivity.java:第一种情况没有attachToRoot参数,默认告知布局生成器将生成的视图添加给父视图,

 1 public class MainActivity extends Activity {
 2 
 3     @Override
 4     protected void onCreate(Bundle savedInstanceState) {
 5         super.onCreate(savedInstanceState);
 6         setContentView(R.layout.activity_main);
 7         ViewGroup vg = (ViewGroup) findViewById(R.id.framelayout);
 8         View v  = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg);
 9 //      View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, false);
10 //      View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, true);
11         
12       
13     }
14 
15    
16 }

第二种情况:参数attachToRoot设为false,不将生成的视图(fragmnt_main)添加给父视图(activity_main),

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ViewGroup vg = (ViewGroup) findViewById(R.id.framelayout);
//        View v  = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg);
          View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, false);
//        View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, true);
    }
}

 

第三种情况:参数attachToRoot设为true,将生成的视图(fragmnt_main)添加给父视图(activity_main),

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ViewGroup vg = (ViewGroup) findViewById(R.id.framelayout);
//        View v  = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg);
//        View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, false);
          View v = LayoutInflater.from(this).inflate(R.layout.fragment_main, vg, true);
    }
}

posted @ 2015-09-20 21:17  Seachal  阅读(921)  评论(1编辑  收藏  举报

作者:Seachal
出处:http://www.cnblogs.com/ZhangSeachal
如果,您认为阅读这篇博客让您有些收获,不妨点击一下左下角的【好文要顶】与【收藏该文】
如果,您希望更容易地发现我的新博客,不妨点击一下左下角的【关注我】
如果,您对我的博客内容感兴趣,请继续关注我的后续博客,我是【Seachal】

我的GitHub 我的CSDN 我的简书

本博文为学习、笔记之用,以笔记记录作者学习的知识与学习后的思考或感悟。学习过程可能参考各种资料,如觉文中表述过分引用,请务必告知,以便迅速处理。如有错漏,不吝赐教!