zoukankan      html  css  js  c++  java
  • infate

    通俗的说,inflate就相当于将一个xml中定义的布局找出来.
      
      因为在一个Activity里如果直接用findViewById()的话,对应的是setConentView()的那个layout里的组件.
      
      因此如果你的Activity里如果用到别的layout,比如对话框上的layout,你还要设置对话框上的layout里的组件(像图片ImageView,文字TextView)上的内容,你就必须用inflate()先将对话框上的layout找出来,然后再用这个layout对象去找到它上面的组件,如:
      
      View view=View.inflate(this,R.layout.dialog_layout,null);
      
      TextView dialogTV=(TextView)view.findViewById(R.id.dialog_tv);
      
      dialogTV.setText("abcd");
      
      如果组件R.id.dialog_tv是对话框上的组件,而你直接用this.findViewById(R.id.dialog_tv)肯定会报错.
      
      三种方式可以生成LayoutInflater:
      
      LayoutInflater inflater=LayoutInflater.from(this);
      
      LayoutInflater inflater=getLayoutInflater();
      
      LayoutInflater inflater=(LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
      
      然后调用inflate方法将xml布局文件转成View
      
      public View inflate(int resource,ViewGroup root,boolean attachToRoot)
      
      在View类中,也有inflate方法
      
      public static View inflate(Context context,int resource,ViewGroup root)

  • 相关阅读:
    initctl 创建自己的JOB
    TortoiseXX 与TotalCommander (TC)的图标问题
    eclipse 与 tomcat 的那些路径
    把函数视为对象
    序列增量赋值的一个谜题: +=
    __new__ 和 __init__ 的区别
    Python 中 is 与 == 区别
    Flask 2.0.1 changes
    flask run 与 DispatcherMiddleware 不兼容处理
    waitress 部署 flask服务
  • 原文地址:https://www.cnblogs.com/qingblog/p/2616918.html
Copyright © 2011-2022 走看看