Android LayoutInflater的用法详解

2023-10-22 13:50

本文主要是介绍Android LayoutInflater的用法详解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

相信我们在开发过程中肯定接触过LayoutInflater,比如ListView的适配器里的getView方法里通过LayoutInflater.from(Context).inflater来加载xml布局,在Fragment里的onCreateView里面也是一样,加载布局一共三种方法。
1,在Activity里面调用getLayoutInflater()
2, 通过LayoutInflater.from(context).inflater()
3, context.getSystemService(Context.LAYOUT_INFLATER_SERVICE))
以上的三种方式从实现上都是一样的,Activity里面的getLayoutInflater()实际上调用的是PhoneWindow的实现,而PhoneWindow里源码的处理是LayoutInflater.from(context).inflater(),往下查找最终调用context.getSystemService。
context.getSystemService是Android里一个比较重要的api,是Activity的一个方法,根据传入的Name来取得对应的Object,然后转换成相应的服务对象。以下是系统相应的服务。
传入的Name返回的对象说明
WINDOW_SERVICE WindowManager 管理打开的窗口程序
LAYOUT_INFLATER_SERVICE LayoutInflater 取得xml里定义的view
ACTIVITY_SERVICE ActivityManager 管理应用程序的系统状态
POWER_SERVICE PowerManger 电源的服务
ALARM_SERVICE AlarmManager 闹钟的服务
NOTIFICATION_SERVICE NotificationManager 状态栏的服务
KEYGUARD_SERVICE KeyguardManager 键盘锁的服务
LOCATION_SERVICE LocationManager 位置的服务,如GPS
SEARCH_SERVICE SearchManager 搜索的服务
VEBRATOR_SERVICE Vebrator 手机震动的服务
CONNECTIVITY_SERVICE Connectivity 网络连接的服务
WIFI_SERVICE WifiManager Wi-Fi服务
TELEPHONY_SERVICE TeleponyManager 电话服务

但是LayoutInflater.from(context).inflater()的方法这么多,那它们到底是什么样的用法呢?

/**
341     * Inflate a new view hierarchy from the specified xml resource. Throws
342     * {@link InflateException} if there is an error.
343     *
344     * @param resource ID for an XML layout resource to load (e.g.,
345     *        <code>R.layout.main_page</code>)
346     * @param root Optional view to be the parent of the generated hierarchy.
347     * @return The root View of the inflated hierarchy. If root was supplied,
348     *         this is the root View; otherwise it is the root of the inflated
349     *         XML file.
350     */
351    public View inflate(int resource, ViewGroup root) {
352        return inflate(resource, root, root != null);
353    }
354
355    /**
356     * Inflate a new view hierarchy from the specified xml node. Throws
357     * {@link InflateException} if there is an error. *
358     * <p>
359     * <em><strong>Important</strong></em>&nbsp;&nbsp;&nbsp;For performance
360     * reasons, view inflation relies heavily on pre-processing of XML files
361     * that is done at build time. Therefore, it is not currently possible to
362     * use LayoutInflater with an XmlPullParser over a plain XML file at runtime.
363     *
364     * @param parser XML dom node containing the description of the view
365     *        hierarchy.
366     * @param root Optional view to be the parent of the generated hierarchy.
367     * @return The root View of the inflated hierarchy. If root was supplied,
368     *         this is the root View; otherwise it is the root of the inflated
369     *         XML file.
370     */
371    public View inflate(XmlPullParser parser, ViewGroup root) {
372        return inflate(parser, root, root != null);
373    }
374
375    /**
376     * Inflate a new view hierarchy from the specified xml resource. Throws
377     * {@link InflateException} if there is an error.
378     *
379     * @param resource ID for an XML layout resource to load (e.g.,
380     *        <code>R.layout.main_page</code>)
381     * @param root Optional view to be the parent of the generated hierarchy (if
382     *        <em>attachToRoot</em> is true), or else simply an object that
383     *        provides a set of LayoutParams values for root of the returned
384     *        hierarchy (if <em>attachToRoot</em> is false.)
385     * @param attachToRoot Whether the inflated hierarchy should be attached to
386     *        the root parameter? If false, root is only used to create the
387     *        correct subclass of LayoutParams for the root view in the XML.
388     * @return The root View of the inflated hierarchy. If root was supplied and
389     *         attachToRoot is true, this is root; otherwise it is the root of
390     *         the inflated XML file.
391     */
392    public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
393        if (DEBUG) System.out.println("INFLATING from resource: " + resource);
394        XmlResourceParser parser = getContext().getResources().getLayout(resource);
395        try {
396            return inflate(parser, root, attachToRoot);
397        } finally {
398            parser.close();
399        }
400    }

上面的方法非常清晰,直接看下inflate(parser, root, attachToRoot);

/**
403     * Inflate a new view hierarchy from the specified XML node. Throws
404     * {@link InflateException} if there is an error.
405     * <p>
406     * <em><strong>Important</strong></em>&nbsp;&nbsp;&nbsp;For performance
407     * reasons, view inflation relies heavily on pre-processing of XML files
408     * that is done at build time. Therefore, it is not currently possible to
409     * use LayoutInflater with an XmlPullParser over a plain XML file at runtime.
410     *
411     * @param parser XML dom node containing the description of the view
412     *        hierarchy.
413     * @param root Optional view to be the parent of the generated hierarchy (if
414     *        <em>attachToRoot</em> is true), or else simply an object that
415     *        provides a set of LayoutParams values for root of the returned
416     *        hierarchy (if <em>attachToRoot</em> is false.)
417     * @param attachToRoot Whether the inflated hierarchy should be attached to
418     *        the root parameter? If false, root is only used to create the
419     *        correct subclass of LayoutParams for the root view in the XML.
420     * @return The root View of the inflated hierarchy. If root was supplied and
421     *         attachToRoot is true, this is root; otherwise it is the root of
422     *         the inflated XML file.
423     */
424    public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
425        synchronized (mConstructorArgs) {
426            final AttributeSet attrs = Xml.asAttributeSet(parser);
427            Context lastContext = (Context)mConstructorArgs[0];
428            mConstructorArgs[0] = mContext;
429            View result = root;
430
431            try {
432                // Look for the root node.
433                int type;
434                while ((type = parser.next()) != XmlPullParser.START_TAG &&
435                        type != XmlPullParser.END_DOCUMENT) {
436                    // Empty
437                }
438
439                if (type != XmlPullParser.START_TAG) {
440                    throw new InflateException(parser.getPositionDescription()
441                            + ": No start tag found!");
442                }
443
444                final String name = parser.getName();
445
446                if (DEBUG) {
447                    System.out.println("**************************");
448                    System.out.println("Creating root view: "
449                            + name);
450                    System.out.println("**************************");
451                }
452
453                if (TAG_MERGE.equals(name)) {
454                    if (root == null || !attachToRoot) {
455                        throw new InflateException("<merge /> can be used only with a valid "
456                                + "ViewGroup root and attachToRoot=true");
457                    }
458
459                    rInflate(parser, root, attrs, false);
460                } else {
461                    // Temp is the root view that was found in the xml
462                    View temp;
463                    if (TAG_1995.equals(name)) {
464                        temp = new BlinkLayout(mContext, attrs);
465                    } else {
466                        temp = createViewFromTag(root, name, attrs);
467                    }
468
469                    ViewGroup.LayoutParams params = null;
470                    // 当父层不为空时
471                    if (root != null) {
472                        if (DEBUG) {
473                            System.out.println("Creating params from root: " +
474                                    root);
475                        }
476                        // Create layout params that match root, if supplied// 获取父层的参数并赋值
477                        params = root.generateLayoutParams(attrs);//  子布局不贴上也会被设置LayoutParams
478                        if (!attachToRoot) {
479                            // Set the layout params for temp if we are not
480                            // attaching. (If we are, we use addView, below)
481                            temp.setLayoutParams(params);
482                        }
483                    }
484
485                    if (DEBUG) {
486                        System.out.println("-----> start inflating children");
487                    }
488                    // Inflate all children under temp
489                    rInflate(parser, temp, attrs, true);
490                    if (DEBUG) {
491                        System.out.println("-----> done inflating children");
492                    }
493
494                    // We are supposed to attach all the views we found (int temp)
495                    // to root. Do that now.// 父布局不为空并且贴上会被add到父层
496                    if (root != null && attachToRoot) {
497                        root.addView(temp, params);
498                    }
499
500                    // Decide whether to return the root that was passed in or the
501                    // top view found in xml.// 父布局为空或者没有贴上,result就是View本身
502                    if (root == null || !attachToRoot) {
503                        result = temp;
504                    }
505                }
506
507            } catch (XmlPullParserException e) {
508                InflateException ex = new InflateException(e.getMessage());
509                ex.initCause(e);
510                throw ex;
511            } catch (IOException e) {
512                InflateException ex = new InflateException(
513                        parser.getPositionDescription()
514                        + ": " + e.getMessage());
515                ex.initCause(e);
516                throw ex;
517            } finally {
518                // Don't retain static reference on context.
519                mConstructorArgs[0] = lastContext;
520                mConstructorArgs[1] = null;
521            }
522          // 最后返回 result
523            return result;
524        }
525    }

由上源码我们可以得出:
inflate(layout, null)返回的是View本身,addView后View本身所设置的布局参数无效,由父层和子View决定大小。
inflate(layout, null, false)同上一样,当父层为空,第三个值是否为真没有意义。
inflate(layout, parent)子布局会被add到父层并为该View设置布局参数,具体大小由父层和子View决定。
inflate(layout, parent, false)同上一样,区别就是false父层不会addView。
inflate(layout, parent, true)同第三个方法一样,父层View会addView并为其设置参数。

这篇关于Android LayoutInflater的用法详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/261845

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

OpenHarmony鸿蒙开发( Beta5.0)无感配网详解

1、简介 无感配网是指在设备联网过程中无需输入热点相关账号信息,即可快速实现设备配网,是一种兼顾高效性、可靠性和安全性的配网方式。 2、配网原理 2.1 通信原理 手机和智能设备之间的信息传递,利用特有的NAN协议实现。利用手机和智能设备之间的WiFi 感知订阅、发布能力,实现了数字管家应用和设备之间的发现。在完成设备间的认证和响应后,即可发送相关配网数据。同时还支持与常规Sof

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

K8S(Kubernetes)开源的容器编排平台安装步骤详解

K8S(Kubernetes)是一个开源的容器编排平台,用于自动化部署、扩展和管理容器化应用程序。以下是K8S容器编排平台的安装步骤、使用方式及特点的概述: 安装步骤: 安装Docker:K8S需要基于Docker来运行容器化应用程序。首先要在所有节点上安装Docker引擎。 安装Kubernetes Master:在集群中选择一台主机作为Master节点,安装K8S的控制平面组件,如AP

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

bytes.split的用法和注意事项

当然,我很乐意详细介绍 bytes.Split 的用法和注意事项。这个函数是 Go 标准库中 bytes 包的一个重要组成部分,用于分割字节切片。 基本用法 bytes.Split 的函数签名如下: func Split(s, sep []byte) [][]byte s 是要分割的字节切片sep 是用作分隔符的字节切片返回值是一个二维字节切片,包含分割后的结果 基本使用示例: pa

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

嵌入式Openharmony系统构建与启动详解

大家好,今天主要给大家分享一下,如何构建Openharmony子系统以及系统的启动过程分解。 第一:OpenHarmony系统构建      首先熟悉一下,构建系统是一种自动化处理工具的集合,通过将源代码文件进行一系列处理,最终生成和用户可以使用的目标文件。这里的目标文件包括静态链接库文件、动态链接库文件、可执行文件、脚本文件、配置文件等。      我们在编写hellowor