具体作用如下:1 对于一个没有载入或者想要动态载入的界面 , 都需要使用Layoutinflater.inflater() 来载入 。2 对于已经载入的界面 , 就可以使用Activity.findViewById()方法来获取其中的界面元素 。
【adapter怎么写】获得layoutInflater实例的三种方式1 layoutinflater inflater = getLayoutInflater();2 LayoutInflater localinflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)3 LayoutInflater inflater = LayoutInflater.from(context)这三种的本质都是调用context.getSystemService()获得实例之后可以通过实例调用该类的方法inflate 这个方法有一下几种的过载形式 , 返回值均为View对象.public View inflate (int resource, ViewGroup root) public View inflate (XmlPullParser parser, ViewGroup root) public View inflate (Xm 。