LayoutInflater 类的使用

转  http://yxwang0615.iteye.com/blog/1711147

一个Activity里如果直接用findViewById(),对应的是setConentView()的那个layout里的组件,因此如果你的

Activity里如果用到别的layout,你就必须用inflate()先将对话框上的layout找出来,然后再用这个layout对

象去找到它上面的组件,

Java代码

  1. public View inflate(Context context, int Resourece,ViewGroup root)
  2. 作用:填充一个新的视图层次结构从指定的XML资源文件中
  3. context : The Context object for your activity or application
  4. reSource:View的layout的ID
  5. root: 生成的层次结构的根视图
  6. return 填充的层次结构的根视图。如果参数root提供了,那么root就是根视图;否则填充的XML文件的根就是根视图。
public View inflate(Context context, int Resourece,ViewGroup root)
  作用:填充一个新的视图层次结构从指定的XML资源文件中
  context : The Context object for your activity or application
  reSource:View的layout的ID
  root: 生成的层次结构的根视图
  return 填充的层次结构的根视图。如果参数root提供了,那么root就是根视图;否则填充的XML文件的根就是根视图。

View view = View.inflate(this, R.layout.dialog_layout, null);

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

dialogTV.setText("abcd");

setContentView()一旦调用, layout就会立刻显示UI;而inflate只会把Layout形成一个以view类实现成的对象,

有需要时再用setContentView(view)显示出来。一般在activity中通过setContentView()将界面显示出来,

然后才能使用findViewById()是找xml布局文件下的具体widget控件(如Button、TextView等)

但是如果在非activity中如何对控件布局设置操作了,这就需要LayoutInflater动态加载。

LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化。

Java代码

  1. LayoutInflater inflater = LayoutInflater.from(this);
  2. View view=inflater.inflate(R.layout.ID, null);
  3. //或者干脆并成一句:
  4. View view=LayoutInflater.from(this).inflate(R.layout.ID, null);
LayoutInflater inflater = LayoutInflater.from(this);
View view=inflater.inflate(R.layout.ID, null);
//或者干脆并成一句:
View view=LayoutInflater.from(this).inflate(R.layout.ID, null); 

或者:

Java代码

  1. LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
  2. View view=inflater.inflate(R.layout.ID, null);
LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
View view=inflater.inflate(R.layout.ID, null); 

android.view.View类中也有一个inflater方法:

Java代码

  1. public static View inflate (Context context, int resource, ViewGroup root)
  2. Inflate a view from an XML resource. This convenience method wraps the LayoutInflater class, which provides a full range of options for view inflation.
  3. Parameters
  4. context The Context object for your activity or application.
  5. resource The resource ID to inflate
  6. root A view group that will be the parent. Used to properly inflate the layout_* parameters.
public static View inflate (Context context, int resource, ViewGroup root)

Inflate a view from an XML resource. This convenience method wraps the LayoutInflater class, which provides a full range of options for view inflation.
Parameters

context	The Context object for your activity or application.
resource	The resource ID to inflate
root	A view group that will be the parent. Used to properly inflate the layout_* parameters.

该方法和LayoutInflater中的inflater方法区别不明,查api也没看明白:

Java代码

  1. public View inflate (int resource, ViewGroup root)
  2. Inflate a new view hierarchy from the specified xml resource. Throws InflateException if there is an error.
  3. Parameters
  4. resource ID for an XML layout resource to load (e.g., R.layout.main_page)
  5. root Optional view to be the parent of the generated hierarchy.
  6. Returns
  7. The root View of the inflated hierarchy. If root was supplied, this is the root View; otherwise it is the root of the inflated XML file.
public View inflate (int resource, ViewGroup root)
Inflate a new view hierarchy from the specified xml resource. Throws InflateException if there is an error.

Parameters

resource	ID for an XML layout resource to load (e.g., R.layout.main_page)
root	Optional view to be the parent of the generated hierarchy.

Returns
The root View of the inflated hierarchy. If root was supplied, this is the root View; otherwise it is the root of the inflated XML file.

一般在adapter的getview方法中使用View.inflate的比较多,最近在研究自定义下拉刷新listview的时候,使用了View.inflate一直报如下错误:

Java代码

  1. mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  2. shView = (RelativeLayout) mInflater.inflate(R.layout.pull_to_refresh_header, this, false);
  3. //mRefreshView = (RelativeLayout)View.inflate(context, R.layout.pull_to_refresh_header, null);
        mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
		mRefreshView = (RelativeLayout) mInflater.inflate(R.layout.pull_to_refresh_header, this, false);
        //mRefreshView = (RelativeLayout)View.inflate(context, R.layout.pull_to_refresh_header, null);

Xml代码

  1. android.view.InflateException: Binary XML file line #10: Error inflating class com.markupartist.android.widget.PullToRefreshListView
android.view.InflateException: Binary XML file line #10: Error inflating class com.markupartist.android.widget.PullToRefreshListView

而使用 LayoutInflater 就没事,原因翻阅很多资料都没弄明白,看样子定义控件的inflate还是使用

LayoutInflater 吧!

时间: 2024-10-19 03:17:29

LayoutInflater 类的使用的相关文章

LayoutInflater类详解

http://www.cnblogs.com/top5/archive/2012/05/04/2482328.html 在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于 findViewById().不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化:而 findViewById()是找xml布局文件下的具体widget控件(如Button.TextView等). 具体作用: 1.对于一个没有被载入或者想要动态载入的界面,

[Android FrameWork 6.0源码学习] LayoutInflater 类分析

LayoutInflater是用来解析XML布局文件,然后生成对象的ViewTree的工具类.是这个工具类的存在,才能让我们写起Layout来那么省劲. 我们接下来进去刨析,看看里边的奥秘 //调用inflate方法就可以把XML解析成View对象 View contentView = LayoutInflater.from(this).inflate(R.layout.activity_main, null); 我们在使用这个类的时候,通常都是像上面这样写,首先通过from函数获取对象,在调用

LayoutInflater类使用实例

用于构建复杂的Dialog显示界面 main.xml代码如下: <?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="

Android数据填充器LayoutInflater

LayoutInflater类在应用程序中比较实用,可以叫布局填充器,也可以成为打气筒,意思就是将布局文件填充到自己想要的位置,LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化这个XML文件成为一个View,有点类似于类似于findViewById(),但是findViewById()是找xml布局文件下的具体widget控件(Button.TextView).对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate

LayoutInflater和inflate()

LayoutInflater LayoutInflater抽象类是用来加载XML布局文件(UI界面)的. 作用: 1.对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate()或View.inflate()来载入,然后也可以通过findByIdView()获取界面的元素: 2.对于一个已经通过setContentView()载入的界面,就可以使用findViewById()方法来获得其中的界面元素. 获得 LayoutInflater 实例的三种方式 (

Android的初步探索之Context类

最近一直在学安卓,但由于JAVA的能力有限,学起应用开发来很吃力,众多错综复杂的类和界面组件弄的人焦头烂额,往往不知从何下手.... 各种名字冗长的方法和常量,没有任何界面编程的经验真是蛋疼死了.总是理不顺各种类之间的关系,也没有良好的JAVA代码风格,哇呀呀真是日了狗了=.= 好了牢骚发完了,来写写自己对Context的一丢丢理解. 首先他是一个抽象类,一个桥梁,一个接口,他可以代表应用的全局信息,也可代表某一个活动的信息.每一个活动都会对应一个Context对象,来记载这个活动的所有信息,他

Android中将xml布局文件转化为View树的过程分析(下)-- LayoutInflater源码分析

在Android开发中为了inflate一个布局文件,大体有2种方式,如下所示: // 1. get a instance of LayoutInflater, then do whatever you want LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // 2. you're in some View class, then jus

Android LayoutInflater.inflate()的参数及其用法

很多人在网上问LayoutInflater类的用法,以及inflate()方法参数的含义,现解释如下: inflate()的作用就是将一个用xml定义的布局文件查找出来,注意与findViewById()的区别,inflate是加载一个布局文件,而findViewById则是从布局文件中查找一个控件. 1.获取LayoutInflater对象有三种方法 LayoutInflater inflater=LayoutInflater.from(this); LayoutInflater inflat

【转】LayoutInflater——80%的Android程序员对它并不了解甚至错误使用

这个标题起的有点夸张哈,但是LayoutInflater这个类的一些用法,在Android开发者使用的过程中,确实存在着一些很普遍的误区,最起码我研究的这么多小项目的源代码,基本上都在错误的使用这个类.今天,看到了一篇文章讲LayoutInflater的用法,瞬间感觉自己对这个类确实不够了解,于是简单的看了下LayoutInflater类的源代码,对这个类有了新的认识. 首先,LayoutInflater这个类是用来干嘛的呢? 我们最常用的便是LayoutInflater的inflate方法,这