WEB开发网
开发学院手机开发Android 开发 Android LayoutFlater 的使用 阅读

Android LayoutFlater 的使用

 2010-03-27 15:34:00 来源:WEB开发网   
核心提示:一、 使用LayoutFlater目的将layout转成view, 用于别的组件显示二、 LayoutFlater的获取1. 通过LayoutFlater静态方法Java代码layoutInflater = LayoutInflater.from(context);layoutInflater = LayoutInfl

一、 使用LayoutFlater目的

将layout转成view, 用于别的组件显示

二、 LayoutFlater的获取

1. 通过LayoutFlater静态方法

Java代码

layoutInflater = LayoutInflater.from(context);

layoutInflater = LayoutInflater.from(context);

2. 通过Context:

Java代码

LayoutInflater LayoutInflater =

(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

LayoutInflater LayoutInflater =

(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

两者是一样的。

三、 LayoutFlater的使用:

常用的LayoutFlater方法:

Java代码

public View inflate(int resource, ViewGroup root, boolean attachToRoot)

public View inflate(int resource, ViewGroup root, boolean attachToRoot)

参数:

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 (if attachToRoot is true), or else simply an object that provides a set of LayoutParams values for root of the returned hierarchy (if attachToRoot is false.)

attachToRoot Whether the inflated hierarchy should be attached to the root parameter? If false, root is only used to create the correct subclass of LayoutParams for the root view in the XML.

其实是通过:

Java代码

public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot)

public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot)

上面的那个是通过这个:

Java代码

XmlResourceParser parser = getContext().getResources().getLayout(resource);

Tags:Android LayoutFlater 使用

编辑录入:coldstar [复制链接] [打 印]
赞助商链接