LayoutInflater和inflate()方法的用法 (自

2015-08-10  本文已影响0人  栗子爸0803

实现LayoutInflater的实例化共有3种方法:

1. 通过SystemService获得

LayoutInflater inflater = (LayoutInflater)context.getSystemServices(Context.LAYOUT_INFLATER_SERVICES);

View view = inflater.inflate(R.layout.main, null);

2. 从给定的context中获得

LayoutInflater inflater = LayoutInflater.from(context);

View view = inflater.inflate(R.layout.mian, null);

3.

LayoutInflater inflater = getLayoutInflater();(在Activity中可以使用,实际上是View子类下window的一个函数)

Viewlayout = inflater.inflate(R.layout.main, null);

上一篇 下一篇

猜你喜欢

热点阅读