`
ableouou
  • 浏览: 73634 次
  • 性别: Icon_minigender_2
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

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. 两者的区别:实际上是一样的,源码
/**
     * Obtains the LayoutInflater from the given context.
     */
    public static LayoutInflater from(Context context) {
        LayoutInflater LayoutInflater =
                (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (LayoutInflater == null) {
            throw new AssertionError("LayoutInflater not found.");
        }
        return LayoutInflater;
}
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等)。
分享到:
评论

相关推荐

    LayoutInflater源码分析 inflate方法的区别

    本篇文章将深入探讨`LayoutInflater`的`inflate`方法之间的区别,帮助开发者更好地理解和利用这个强大的功能。 首先,`LayoutInflater`有两个主要的`inflate`方法: 1. `inflate(@LayoutRes int resource, ...

    Js算法 zip_deflate(压缩)与zip_inflate(解压)

    JavaScript中的zip_deflate和zip_inflate是用于数据压缩和解压缩的算法,它们在Web开发中扮演着重要的角色,尤其是在处理大量数据传输时。这里我们将深入探讨这两个概念以及如何在JavaScript环境中实现它们。 首先...

    Android 中LayoutInflater.inflate()方法的介绍

    最近一直想弄明白LayoutInflater对象的inflate方法的用法,今天做了实例。 android:layout_width=match_parent android:layout_height=200dp android:background=#FF0000 android:orientation=vertical> ...

    inflate的使用

    `inflate`方法通常在Activity、Fragment或者自定义ViewGroup中被调用,用于动态加载和插入布局,使得我们的应用界面具有更高的灵活性和可定制性。 `inflate`方法是`LayoutInflater`类的核心功能,它接收三个参数:...

    LayoutInflater.from(context).inflate()方法的调研

    在Android开发中,`LayoutInflater.from(context).inflate()`方法是一个至关重要的组件,用于将XML布局文件转换为视图对象并添加到视图层次结构中。这个方法广泛应用于动态加载和构建用户界面,尤其在处理列表视图、...

    Android下使用ViewStub控件加载

    4. **处理加载后的视图**:inflate方法会返回加载后的真实View对象,可以进一步对这个View进行操作,比如设置点击事件、添加数据等。 在"ViewStubDemo"这个压缩包文件中,很可能包含了演示ViewStub使用的一个简单...

    dynamicLayout_android源码_

    动态加载布局通常涉及到在运行时调用LayoutInflater的inflate方法,将新的布局插入到现有视图层次结构中。 2. **ViewStub**: ViewStub是一个轻量级的View,它在XML布局文件中占位但不占用任何空间。它被设计用来...

    ListView之ViewStub的使用

    当ViewStub被设置为可见或者调用inflate方法时,它会加载其关联的布局资源并成为布局的一部分。在ListView中巧妙地使用ViewStub,可以实现一些动态加载或优化性能的需求。本文将深入探讨如何在ListView中应用...

    LayoutInflater的使用

    LayoutInflater 的inflate 方法共有四种形式,目的都是把 xml 表述的 layout 转化为 View 对象。其中一个比较常用的是: ```java View inflate(int resource, ViewGroup root) ``` 其中,int resource 是 resource...

    LayoutInflater inflate例子

    `inflate()` 方法是`LayoutInflater` 的核心功能,用于将XML布局资源动态地加载到活动中。下面将详细解释`LayoutInflater` 及其`inflate()` 方法的工作原理,以及如何在实际应用中灵活使用它们。 `LayoutInflater` ...

    移动计算及应用开发技术作业1

    例如,在onCreateOptionsMenu方法中,我们可以看到inflate方法的调用,这方法是用于加载菜单资源的。 四、日志记录 日志记录是Android应用程序中的一个基本概念,指的是应用程序中的日志记录。在MainActivity.java...

    Android应用源码之MyViewstub-IT计算机-毕业设计.zip

    2. **在代码中引用和操作ViewStub**:在Activity或Fragment中,通过findViewById获取到ViewStub对象,然后调用inflate方法来加载对应的布局。 ```java ViewStub viewStub = findViewById(R.id.viewStub); viewStub....

    应用源码之MyOptionMenuXml.zip

    3. **inflate方法**:在活动中,通过调用`MenuInflater`的`inflate()`方法,将XML菜单资源加载到`OptionsMenu`中。 4. **onCreateOptionsMenu()**:这是Android活动中回调的方法,用于初始化菜单。在这里,我们可以...

    ViewStub demo

    这通常会包含一个触发事件(如点击按钮),然后在事件处理函数中调用ViewStub的inflate方法。通过查看这个示例,开发者可以更好地理解如何将ViewStub集成到自己的项目中,实现更高效、更灵活的界面管理。

    代码布局学习2

    它接受一个 `View` 对象或者 `LayoutInflator` 的 inflate 方法返回的 `ViewGroup`。通过调用这个方法,你可以将 XML 布局文件解析为视图树,并将其设置为当前活动的主内容视图。一旦调用 `setContentView`,之前的...

    Android个人笔记

    inflate方法用于将XML布局文件解析成View对象并添加到父容器中。它常在Activity的onCreate()方法中使用,结合setContentView()来加载应用的主界面布局。布局文件定义了UI元素的位置、大小及相互关系,支持相对布局、...

    精典源码之自定义弹出窗口的实现,对于作出自己特色效果的界面有一定帮助.zip

    然后通过LayoutInflater的inflate方法将XML布局转换为View对象,并将其设置给PopupWindow。 3. **尺寸和位置**:自定义弹出窗口的尺寸可以通过PopupWindow的setWidth和setHeight方法设定,而位置则可以使用...

    Android自定义PopupWindow

    1. 创建`PopupWindow`实例:首先需要一个View对象,这个View就是`PopupWindow`显示的内容,通常我们通过inflate方法加载布局文件得到。然后通过`new PopupWindow(view, width, height)`来创建`PopupWindow`,传入...

    PopupWindow的使用

    内容视图通常是通过inflate方法加载一个布局文件来创建的,这可以包含任何你想要展示的UI元素。例如,你可以创建一个包含多个菜单项的LinearLayout,并为每个菜单项设置点击事件监听器。 ```java View contentView ...

    PopupWindow

    2. **设置显示内容**:内容视图可以通过inflate方法加载布局文件,如`LayoutInflater.from(context).inflate(R.layout.popup_window, null);` 3. **显示PopupWindow**:使用`showAtLocation()`或`showAsDropDown()`...

Global site tag (gtag.js) - Google Analytics