转自:http://dev.10086.cn/cmdn/wiki/index.php?doc-view-6066.html

android中LayoutInflater的使用

编辑文档

Inflater英文意思是膨胀,在Android 中应该是扩展的意思吧。
LayoutInflater 的作用类似于 findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化!而 findViewById()是找具体某一个xml下的具体 widget控件(如:Button,TextView等)。

(0)她可以有很多地方可以使用,如BaseAdapter的getView中,自定义Dialog中取得view中的组件widget等等。
它的用法有2种:

复制到剪贴板 Java代码
  1. viewplaincopytoclipboardprint?
  2. LayoutInflaterinflater=LayoutInflater.from(this );
  3. Viewview=inflater.inflate(R.layout.ID,null );
  4. 或者干脆并成一句:
  5. Viewview=LayoutInflater.from(this ).inflate(R.layout.ID, null );


另一种方法: 复制到剪贴板 Java代码
  1. viewplaincopytoclipboardprint?
  2. LayoutInflaterinflater=(LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
  3. Viewview=inflater.inflate(R.layout.ID,null );


上面2种方法本质上是一样的,看下面的源码,form()调用的就是getSystemService():
复制到剪贴板 Java代码
  1. Java代码
  2. public static LayoutInflaterfrom(Contextcontext){
  3. LayoutInflaterLayoutInflater=
  4. (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  5. if (LayoutInflater== null ){
  6. throw new AssertionError( "LayoutInflaternotfound." );
  7. }
  8. return LayoutInflater;
  9. }



另外getSystemService()是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象。以下介绍系统相应的服务。

传入的Name 返回的对象 说明
WINDOW_SERVICE WindowManager 管理打开的窗口程序
LAYOUT_INFLATER_SERVICE LayoutInflater 取得xml里定义的view
ACTIVITY_SERVICE ActivityManager 管理应用程序 的系统状态
POWER_SERVICE PowerManger 电源的服务
ALARM_SERVICE AlarmManager 闹钟的服务
NOTIFICATION_SERVICE NotificationManager 状态栏的服务
KEYGUARD_SERVICE KeyguardManager 键盘锁的服务
LOCATION_SERVICE LocationManager 位置的服务,如GPS
SEARCH_SERVICE SearchManager 搜索的服务
VEBRATOR_SERVICE Vebrator 手机震动的服务
CONNECTIVITY_SERVICE Connectivity 网络连接的服务
WIFI_SERVICE WifiManager Wi-Fi服务
TELEPHONY_SERVICE TeleponyManager 电话服务


复制到剪贴板 Java代码
  1. Java代码
  2. //基本用法
  3. public void showCustomDialog(){
  4. AlertDialog.Builderbuilder;
  5. AlertDialogalertDialog;
  6. ContextmContext=AppActivity.this ;
  7. //下面俩种方法都可以
  8. //LayoutInflaterinflater=getLayoutInflater();
  9. LayoutInflaterinflater=(LayoutInflater)
  10. mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
  11. Viewlayout=inflater.inflate(R.layout.custom_dialog,null );
  12. TextViewtext=(TextView)layout.findViewById(R.id.text);
  13. text.setText("Hello,WelcometoMrWei'sblog!" );
  14. ImageViewimage=(ImageView)layout.findViewById(R.id.image);
  15. image.setImageResource(R.drawable.icon);
  16. builder=new AlertDialog.Builder(mContext);
  17. builder.setView(layout);
  18. alertDialog=builder.create();
  19. alertDialog.show();
  20. }
  21. }
  22. protected void showToast( int type){
  23. Toast.makeText(this , "*********" ,Toast.LENGTH_LONG).show();
  24. LayoutInflaterli=(LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  25. Viewview=li.inflate(R.layout.toast,null );
  26. Toasttoast=new Toast( this );
  27. toast.setView(view);
  28. toast.setDuration(type);
  29. toast.show();
  30. }

更多相关文章

  1. android 使用Intent传递对象 Serializable 或者 Parcelabel 《第
  2. android设置壁纸
  3. android 开发中常用颜色,以及一些颜色的代码
  4. 利用Handler来更新android的UI
  5. Android代码混淆官方实现方法
  6. material design 的android开源代码整理
  7. Android启动过程分析
  8. Android(安卓)ServiceManager源码(一)-- C语言部分
  9. Android百分比布局支持库

随机推荐

  1. Android(安卓)UI开发专题(一) 之界面设计
  2. 关于android组播DatagramPacket不能正常
  3. 有关Android线程的学习
  4. Android高性能编码三:数据结构和算法优化
  5. 编写一个基本的Android​应用程序
  6. Android学习笔记十九之Menu菜单
  7. Android主题与Toolbar样式之间的关系
  8. Android属性动画应用超简单代码打造酷炫
  9. 《Android(安卓)开发艺术探索》笔记——(3
  10. Android(安卓)ADK开发包示例开源代码