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);
    }
}

版权声明:本文版权归作者所有,遵循 CC 4.0 BY-SA 许可协议, 转载请注明原文链接
https://www.cnblogs.com/Seachal/p/4824360.html

maui android 关联文件类型-编程思维

实现效果 打开某个文件,后缀是自己想要的类型,在弹出的窗口(用其它应用打开)的列表中显示自己的应用图标 点击后可以获得文件信息以便于后续的操作 实现步骤 以注册.bin后缀为例,新建一个MAUI项目 调整启动模式 修改Platforms\Android\MainActivity.cs [Activity(Theme

java内部类持有外部类的引用详细分析与解决方案-编程思维

在Java中内部类的定义与使用一般为成员内部类与匿名内部类,他们的对象都会隐式持有外部类对象的引用,影响外部类对象的回收。 GC只会回收没有被引用或者根集不可到达的对象(取决于GC算法),内部类在生命周期内始终持有外部类的对象的引用,造成外部类的对象始终不满足GC的回收条件,反映在内存上就是内存泄露。(如,Androi

android存储方式的应用场景-编程思维

作为一个完整的应用程序,数据存储操作是必不可少的。因此,Android系统一共提供了四种数据存储方式。分别是:SharePreference、文件存储、SQLite、 Content Provider。对这几种方式的不同和应用场景整理如下。第一种: 使用SharedPreferences存储数据  适用范围:保存少量的