zoukankan      html  css  js  c++  java
  • Android Activity探索之LayoutInflater详解

    一、简介

      LayoutInflater与findViewById(int id)功能类似,主要用于查找res/layout/***下xml布局文件。而findViewById(int id)方法是查找已经加载的布局文件中具体widget控件,比如:Button,TextView等。具体作用:

    • 对于一个没有载入或者想动态载入的界面,都需要使用LayoutInflater.inflater(...)方法载入。
    • 对于一个已经载入的布局文件,可以使用Activity.findViewById(int id)方法获取界面的元素。

      LayoutInflater是一个抽象类,其声名如下:

    1 public abstract class LayoutInflater extends Object{}

      可以通过以下三种方法,获取LayoutInflater实例对象:

    1 // 调用Activity的getLayoutInflater() 
    2 LayoutInflater inflater = getLayoutInflater();
    3 LayoutInflater inflater = LayoutInflater.from(context);  
    4 LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  • 相关阅读:
    linux I2C 读写 tlv320dac3100
    ubuntu lfs
    安装和使用花生壳(linux)
    vim 配置
    vim
    gnome2 恢复默认 panel
    ubuntu 挂在 jffs2 文件
    gstreamer 播放
    gstreamer 环境变亮设置
    探讨【IGE】的源代码【五】。
  • 原文地址:https://www.cnblogs.com/naray/p/5297055.html
Copyright © 2011-2022 走看看