Android之Inflate()方法用途+setContentView和inflate区别

简介: 引用:http://blog.chinaunix.net/uid-27024249-id-3304935.html Android之Inflate()方法用途 Inflate()作用就是将xml定义的一个布局找出来并隐藏起来,并没有显示出来。

引用:http://blog.chinaunix.net/uid-27024249-id-3304935.html

Android之Inflate()方法用途

Inflate()作用就是将xml定义的一个布局找出来并隐藏起来,并没有显示出来。

android上还有一个与Inflate()类似功能的方法叫findViewById(),二者有时均可使用,但也有区别,

区别在于:

如果你的Activity里用到别的layout,比如对话框layout并且你还要设置这个layout上的其他组件的内容,你就必须用inflate()方法先将对话框的layout找出来,然后再用findViewById()找到它上面的其它组件。例如:
View view1=View.inflate(this,R.layout.dialog_layout,null);

TextView dialogTV=(TextView)view1.findViewById(R.id.dialog_tv);

dialogTV.setText("abcd");
注:R.id.dialog_tv是在对话框layout上的组件,而这时若直接用this.findViewById(R.id.dialog_tv)肯定会报错。

所以,Inflate()或可理解为“隐性膨胀”,隐性摆放在view里,在inflate()之前只是获得控件,但没有大小也没有在View里占据空间;在inflate()之后有了一定大小,但是处于隐藏状态。

 

setContentView和inflate区别
一般用LayoutInflater做一件事:inflate
inflate这个方法总共有四种形式(见下),目的都是把xml表述的layout转化为View对象。
其中有一个比较常用,View inflate(int resource, ViewGroup root),另三个和这个差不多。

int resource,也就是resource/layout文件在R文件中对应的ID,这个必须指定。
ViewGroup root,可以是null:null时就只创建一个resource对应的View;不是null时:会将创建的view自动加为root的child。

 

setContentView和inflate区别:
setContentView()一旦调用, layout就会立刻显示UI;而inflate只会把Layout形成一个以view类实现成的对象,有需要时再用setContentView(view)显示出来。一般在activity中通过setContentView()将界面显示出来,但是如果需要在非activity中对控件布局进行设置,这就需LayoutInflater来进行动态加载了。

 

点击(此处)折叠或打开

  1. < TextView
  2. android:id="@+id/tview"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:text="ATAAW.COM"
  6. />
  7. < Button
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:id="@+id/button"
  11. android:text="按钮"
  12. />
在程序中动态加载以上布局。

 

 

点击(此处)折叠或打开

  1. LayoutInflater flater = LayoutInflater.from(this);
  2. View view = flater.inflate(R.layout.example, null);
获取布局中的控件。

 

 

点击(此处)折叠或打开

  1. button = (Button) view.findViewById(R.id.button);
  2. textView = (TextView)view.findViewById(R.id.tview);
接下来结合源码说说inflate方法的四种形式:
inflate方法总共有四种形式用来把xml表达的layout转化为view.

 

       This class is used to instantiate layout xml files into its corresponding view object. It is never be used directly——use getLayoutInflater() or getSystemService(String)getLayoutInflate() or getSystemService(String) to retrieve a standard LayoutInflater instance that is already hooked up that is already hook up to the current context and correct configured for the device you are running on. 
1. Context.public abstract object getSystemService(String name) 
2. 两种获得LayoutInflater的方法 
a. 通过SystemService获得 
LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLEATER_SERVICE); 
b. 从给定的context中获取 
Public static LayoutInflater from(Context context) 
c. 两者的区别:实际上是一样的,举例如下:

点击(此处)折叠或打开

  1. public static LayoutInflater from(Context context) { 
  2.         LayoutInflater LayoutInflater = 
  3.                 (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
  4.         if (LayoutInflater == null) { 
  5.             throw new AssertionError("LayoutInflater not found."); 
  6.         } 
  7.         return LayoutInflater; 
  8. }
3. LayoutInflater.inflate()将Layout文件转换为View。专门供Layout使用的Inflater。虽然Layout也是View的子类,但在android中如果想将xml中的Layout转换为View放入.java代码中操作,只能通过Inflater,而不能通过findViewById()。 
4. LinearLayout linearLayout = (LinearLayout) findViewById(R.id.placeslist_linearlayout); 
       linearLayout.addView(place_type_text); 
5. findViewById有两种形式 
R.layout.xx是引用res/layout/xx.xml的布局文件(inflate 方法),R.id.xx是引用布局文件里面的组件,组件的id是xx(findViewById方法)。所有的组件id都能用R.id.xx来查看,但是组件不在setContentView()里面的layout中就无法使用,Activity.findViewById()会出现空指针异常 
a. activity中的findViewById(int id) 
b. View 中的findViewById(int id) 
6.不同点是LayoutInflater是用来找layout下xml布局文件,并且实例化!而findViewById()是找具体xml下的具体widget控件(如:Button,TextView等)。 
个人总结:上面那句话说得很好,inflator是用来实例化layout下的xml文件的,findViewById()是寻找对应id的widget控件的。个人把inflator看成是xml文件的句柄,用来抽象地引用这个文件。因为默认的inflator对应的Context就是目前setContentView对应的这个Layout所在的xml文件。
相关文章
|
17天前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
41 2
基于Android P,自定义Android开机动画的方法
|
16天前
Android.mk(makefile)中几个符号的区别:=、 :=、 ?=、 +=
本文解释了在Android.mk文件中使用的几种赋值符号的区别,包括`=`(基本赋值)、`:=`(覆盖赋值)、`?=`(条件赋值,仅在变量未赋值时操作)、`+=`(追加赋值),并通过实验演示了这些符号的具体行为和效果。
61 1
|
17天前
|
Android开发
基于android-11.0.0_r39,系统应用的手动签名方法和过程
本文介绍了基于Android 11.0.0_r39版本进行系统应用手动签名的方法和解决签名过程中遇到的错误,包括处理`no conscrypt_openjdk_jni-linux-x86_64`和`RegisterNatives failed`的问题。
62 2
|
17天前
|
Android开发
Android在rootdir根目录创建自定义目录和挂载点的方法
本文介绍了在Android高通平台的根目录下创建自定义目录和挂载点的方法,通过修改Android.mk文件并使用`LOCAL_POST_INSTALL_CMD`变量在编译过程中添加目录,最终在ramdisk.img的系统根路径下成功创建了`/factory/bin`目录。
38 1
|
17天前
|
开发工具 uml git
AOSP源码下载方法,解决repo sync错误:android-13.0.0_r82
本文分享了下载AOSP源码的方法,包括如何使用repo工具和处理常见的repo sync错误,以及配置Python环境以确保顺利同步特定版本的AOSP代码。
123 0
AOSP源码下载方法,解决repo sync错误:android-13.0.0_r82
|
2月前
|
安全 Android开发 Kotlin
Android经典面试题之Kotlin延迟初始化的by lazy和lateinit有什么区别?
**Kotlin中的`by lazy`和`lateinit`都是延迟初始化技术。`by lazy`用于只读属性,线程安全,首次访问时初始化;`lateinit`用于可变属性,需手动初始化,非线程安全。`by lazy`支持线程安全模式选择,而`lateinit`适用于构造函数后初始化。选择依赖于属性特性和使用场景。**
93 5
Android经典面试题之Kotlin延迟初始化的by lazy和lateinit有什么区别?
|
24天前
|
Android开发
Android项目架构设计问题之onFirstItemVisibleChanged方法的调用如何解决
Android项目架构设计问题之onFirstItemVisibleChanged方法的调用如何解决
27 0
|
24天前
|
Java 测试技术 Android开发
Android项目架构设计问题之使用反射调用类的私有方法如何解决
Android项目架构设计问题之使用反射调用类的私有方法如何解决
13 0
|
2月前
|
Android开发 开发者
Android经典面试题之SurfaceView和TextureView有什么区别?
分享了`SurfaceView`和`TextureView`在Android中的角色。`SurfaceView`适于视频/游戏,独立窗口低延迟,但变换受限;`TextureView`支持复杂变换,视图层级中渲染,适合动画/视频特效,但性能略低。两者在性能、变换、使用和层级上有差异,开发者需按需选择。
43 1
|
2月前
|
SQL Java Unix
Android经典面试题之Java中获取时间戳的方式有哪些?有什么区别?
在Java中获取时间戳有多种方式,包括`System.currentTimeMillis()`(毫秒级,适用于日志和计时)、`System.nanoTime()`(纳秒级,高精度计时)、`Instant.now().toEpochMilli()`(毫秒级,ISO-8601标准)和`Instant.now().getEpochSecond()`(秒级)。`Timestamp.valueOf(LocalDateTime.now()).getTime()`适用于数据库操作。选择方法取决于精度、用途和时间起点的需求。
39 3