zoukankan      html  css  js  c++  java
  • Inflater与findViewById()区别

    /**
                 * Inflater英文意思是膨胀,在Android中应该是扩展的意思吧。 LayoutInflater的作用类似于
                 * findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化! 而
                 * findViewById()是找具体某一个xml下的具体 widget控件(如:Button,TextView等)。
                 */
    
                // LayoutInflater的作用是,把一个View的对象与XML布局文件关联并实例化
                LayoutInflater inflater = (LayoutInflater) listviewActivity.this
                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    
                // LayoutInflater的作用是,把一个View的对象与XML布局文件关联并实例化
                View itemView = inflater.inflate(R.layout.listview_item, null);
    
                // View的对象实例化之后,可以通过findViewById()查找布局文件中的指定Id的组件
                TextView title = (TextView) itemView.findViewById(R.id.txttitle);
                TextView text = (TextView) itemView.findViewById(R.id.txtContent);
    /**
                 * Inflater英文意思是膨胀,在Android中应该是扩展的意思吧。 LayoutInflater的作用类似于
                 * findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化! 而
                 * findViewById()是找具体某一个xml下的具体 widget控件(如:Button,TextView等)。
                 */
    
                // LayoutInflater的作用是,把一个View的对象与XML布局文件关联并实例化
                LayoutInflater inflater = (LayoutInflater) listviewActivity.this
                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    
                // LayoutInflater的作用是,把一个View的对象与XML布局文件关联并实例化
                View itemView = inflater.inflate(R.layout.listview_item, null);
    
                // View的对象实例化之后,可以通过findViewById()查找布局文件中的指定Id的组件
                TextView title = (TextView) itemView.findViewById(R.id.txttitle);
                TextView text = (TextView) itemView.findViewById(R.id.txtContent);
  • 相关阅读:
    vue-cli中安装方法
    css初始化
    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)
    在浏览器上安装 Vue Devtools工具
    vue前端框架面试问题汇总
    git修改用户名、邮箱
    js对字符串的一些操作方法
    11款JavaScript颜色拾取插件推荐
    vue-devtools的安装与使用
    JS里的居民们4-数组((堆)队列
  • 原文地址:https://www.cnblogs.com/niray/p/3815059.html
Copyright © 2011-2022 走看看