相信接触Android久一点的朋友对于LayoutInflater一定不会陌生,都会知道它主要是用于加载布局的。而刚接触Android的朋友可能对LayoutInflater不怎么熟悉,因为加载布局的任务通常都是在Activity中调用setContentView()方法来完成的。其实setContentView()方法的内部也是使用LayoutInflater来加载布局的,只不过这部分源码是internal的,不太容易查看到。那么今天我们就来把LayoutInflater的工作流程仔细地剖析一遍,也许还能解决掉某些困扰你心头多年的疑惑。

先来看一下LayoutInflater的基本用法吧,它的用法非常简单,首先需要获取到LayoutInflater的实例,有两种方法可以获取到,第一种写法如下:

  1. LayoutInflater layoutInflater = LayoutInflater.from(context);

当然,还有另外一种写法也可以完成同样的效果:

  1. LayoutInflater layoutInflater = (LayoutInflater) context
  2. .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

其实第一种就是第二种的简单写法,只是Android给我们做了一下封装而已。得到了LayoutInflater的实例之后就可以调用它的inflate()方法来加载布局了,如下所示:

  1. layoutInflater.inflate(resourceId, root);

inflate()方法一般接收两个参数,第一个参数就是要加载的布局id,第二个参数是指给该布局的外部再嵌套一层父布局,如果不需要就直接传null。这样就成功成功创建了一个布局的实例,之后再将它添加到指定的位置就可以显示出来了。

下面我们就通过一个非常简单的小例子,来更加直观地看一下LayoutInflater的用法。比如说当前有一个项目,其中MainActivity对应的布局文件叫做activity_main.xml,代码如下所示:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/main_layout"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5. </LinearLayout>

这个布局文件的内容非常简单,只有一个空的LinearLayout,里面什么控件都没有,因此界面上应该不会显示任何东西。

那么接下来我们再定义一个布局文件,给它取名为button_layout.xml,代码如下所示:

  1. <Button xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:text="Button" >
  5. </Button>

这个布局文件也非常简单,只有一个Button按钮而已。现在我们要想办法,如何通过LayoutInflater来将button_layout这个布局添加到主布局文件的LinearLayout中。根据刚刚介绍的用法,修改MainActivity中的代码,如下所示:

  1. public class MainActivity extends Activity {
  2. private LinearLayout mainLayout;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_main);
  7. mainLayout = (LinearLayout) findViewById(R.id.main_layout);
  8. LayoutInflater layoutInflater = LayoutInflater.from(this);
  9. View buttonLayout = layoutInflater.inflate(R.layout.button_layout, null);
  10. mainLayout.addView(buttonLayout);
  11. }
  12. }

可以看到,这里先是获取到了LayoutInflater的实例,然后调用它的inflate()方法来加载button_layout这个布局,最后调用LinearLayout的addView()方法将它添加到LinearLayout中。

现在可以运行一下程序,结果如下图所示:

Button在界面上显示出来了!说明我们确实是借助LayoutInflater成功将button_layout这个布局添加到LinearLayout中了。LayoutInflater技术广泛应用于需要动态添加View的时候,比如在ScrollView和ListView中,经常都可以看到LayoutInflater的身影。

【转】http://blog.csdn.net/guolin_blog/article/details/12921889

最新文章

  1. ActiveMQ入门实例
  2. Hackerrank11 LCS Returns 枚举+LCS
  3. 【Alpha】Daily Scrum Meeting第二次
  4. C#函数式编程
  5. mvc5+ef6+Bootstrap 项目心得--身份验证和权限管理
  6. python中的system函数与编码
  7. [ASP.NET]ASP.NET数据绑定菜单控件
  8. 推荐:一个个人开发者搞app赚钱之后的总结!有图有真相。
  9. 如何实现数字lcd显示效果(原创)
  10. css中的列表样式
  11. [coding horror] 1 - sum 2
  12. AFNetWroking 3.0 GET&amp;POST基本使用
  13. python之鼠标的操作
  14. Spring Boot :邮件服务
  15. .net 上传文件
  16. tomcat目录结构以及项目部署
  17. 缓存session,cookie,sessionStorage,localStorage的区别
  18. mysql 约束和外键约束实例
  19. vue和stylus在subline中显示高亮
  20. PHP7.1安装xdebug

热门文章

  1. ural1701 Ostap and Partners
  2. CodeForces 139C Literature Lesson(模拟)
  3. Python之路:线程池
  4. 自制ichartjs饼图
  5. 定时且周期性的任务研究II--ScheduledThreadPoolExecutor
  6. Mac下eclipse导入其他工程中文注释出现乱码解决方案
  7. Apache 隐藏入口文件以及防盗链.htaccess 文件
  8. hql语句拼接的替换方式
  9. php的几个内置的函数
  10. 下标脚本(Swift)