在实际工作中,事先写好的布局文件往往不能满足我们的需求,有时会根据情况在代码中自定义控件,这就需要用到LayoutInflater。
LayoutInflater在Android中是“扩展”的意思,作用类似于findViewById(),不同的是LayoutInflater是用来获得布局文件对象的,而

findViewById()是用来获得具体控件的。LayoutInflater经常在BaseAdapter的getView方法中用到,用来获取整个View并返回。
LayoutInflater的用法有三种:

第一种方法:

LayoutInflater inflater = LayoutInflater.from(this);View layout = inflater.inflate(R.layout.main, null);
第二种方法:

LayoutInflater inflater = getLayoutInflater();View layout = inflater.inflate(R.layout.main, null);
第三种方法:

LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);View layout = inflater.inflate(R.layout.main, null);

第一种方法的本质就是调用第三种方法,而第二种方法和第三种方法有什么区别呢?

在第二种getLayoutInflater源代码里,就是调用第三种,所以第二和第三是一样的。

第二种方法用于Activity类,而第三种方法主要用于BaseAdapter类,由于BaseAdapter类并不像Activity类有getLayoutInflater()方法可以获得LayoutInflater对象,因此,需要使用Context类的getSystemService方法来获得LayoutInflater对象。

下面是简单的使用示例:

public class LayoutInflaterActivity extends Activity {private EditText et;private Button btn;@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);// 第一种方法LayoutInflater inflater = LayoutInflater.from(this);View layout = inflater.inflate(R.layout.main, null);// 第二种方法// LayoutInflater inflater = getLayoutInflater();// View layout = inflater.inflate(R.layout.main, null);// 第三种方法// LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);// View layout = inflater.inflate(R.layout.main, null);// 这里是通过事先获得的布局文件来实例化具体控件,并且可以根据情况自定义控件et = (EditText) layout.findViewById(R.id.edittext);et.setBackgroundColor(Color.YELLOW);btn = (Button) layout.findViewById(R.id.btn);btn.setBackgroundColor(Color.CYAN);// 显示setContentView(layout);}}

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

更多相关文章

  1. tcping测试服务器TCP端口
  2. 服务--Service
  3. Android(安卓)UI 常用控件讲解
  4. Android(安卓)ListView 滑动背景为黑色的解决办法
  5. Android请求服务器的两种方式--post, get的区别
  6. Android布局中ScrollView与ListView的冲突
  7. Android控件
  8. Android使用JSONObject和GSON方法解析JSON格式数据
  9. Android(安卓)客户端与服务端JSP相互传递中文

随机推荐

  1. Android 中支持的几种传感器
  2. 【android】shape的使用
  3. Android性能检测--traceview工具各个参数
  4. android 右上角菜单无法显示
  5. a64_7.1android平板关于更改绘制矩形界面
  6. Android 中的 Service 全面总结
  7. android中去掉空格--trim函数
  8. Android避免启动时闪一下黑屏
  9. android:屏幕自适应
  10. Android 示例之 notepad