• 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);
  • 相关阅读:
    spring Bean的完整生命周期
    idea+maven+ssm搭建boot_crm项目遇到的问题
    面试题:死锁的四个必要条件
    面试题:静态代理和动态代理的区别和联系 没用
    面试题: Struts2
    我所总结的设计模式 合应用场景
    hibernate 对象OID
    hibernate第三天 一对多 , 多对多
    hibernate里的实体类中不能重写toString
    存储前set方法相互关联 只关联了一方 分别set
  • 原文地址:https://www.cnblogs.com/niray/p/3815059.html
Copyright © 2020-2023  润新知