• LayoutInflater 三种获得方式


    LayoutInflater 作用是从外部加载一个xml布局文件。

    获得 LayoutInflater 实例的三种方式:

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

    2.LayoutInflater localinflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    3. LayoutInflater inflater = LayoutInflater.from(context)

    分析:

    getLayoutInflater():

    Activity 中 getLayoutInflater() 调用 PhoneWindow 的getLayoutInflater()方法

    public PhoneWindow(Context context) {         

       super(context);         

       mLayoutInflater = LayoutInflater.from(context); 

     }

    最后调用 LayoutInflater.from(context)。

    LayoutInflater.from(context):

    public static LayoutInflater from(Context context) {      

       LayoutInflater LayoutInflater =  (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);       

       if (LayoutInflater ==null) {          

           throw new AssertionError("LayoutInflater not found.");      

       }      

       return LayoutInflater;  

     }

    其实最后者是调 context.getSystemService()。系统提供的解析服务。

  • 相关阅读:
    hud 1166 敌兵布阵
    zznu 1914 asd的甩锅计划
    poj 1860 Currency Exchange
    poj 3026 Borg Maze (BFS + Prim)
    poj 2349 Arctic Network
    POJ 1502 MPI Maelstrom
    poj 1308 Is It A Tree?
    hdu 1272 小希的迷宫
    poj 1679 http://poj.org/problem?id=1679
    POJ 2492 A Bug's Life
  • 原文地址:https://www.cnblogs.com/mamamia/p/7883236.html
Copyright © 2020-2023  润新知