zoukankan      html  css  js  c++  java
  • LayoutInflater的获取方式

    1.LayoutInflater是什么?

    通俗而讲,就是将xml中定义的布局找出来。

    2.获取LayoutInflater的三种方式

      1. LayoutInflater inflater = getLayoutInflater();  //调用Activity的getLayoutInflater()

      2. LayoutInflater localinflater =  (LayoutInflater)context.getSystemService

                                                     (Context.LAYOUT_INFLATER_SERVICE);

      3. LayoutInflater inflater = LayoutInflater.from(context);

     

    其实,这三种方式本质是相同的,从源码中可以看出

  • 相关阅读:
    bzoj3996
    bzoj3157 3516
    bzoj1937
    bzoj1532
    bzoj3572
    bzoj1453
    bzoj3205
    bzoj2595
    关于高斯消元解决xor问题的总结
    linux查找和替换命令
  • 原文地址:https://www.cnblogs.com/rookiechen/p/5231091.html
Copyright © 2011-2022 走看看