加载view 的方法 获得LayoutInflater的三种方法
- 调用Activity的getLayoutInflater()方法
LayoutInflater inflater = getLayoutInflater();
**View view = inflater.inflate(R.layout.xx);
- LayoutInflater inflater=LayoutInflater.from(context);
- LayoutInflater inflater=
(LayoutInflater)context.getSystemService(Context.LAYOUTINFLATER_SERVICE);