android inflate

this.findviewbyid只能是自己的上下文中

LayoutInflater inflater = LayoutInflater.from(Context context);

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

Button button = (Button)view.findviewByid()

然后就可以把view set到其他context里面去了

gridview listview之类的

重写baseadapter中getview中会用到

或者

View view = View.inflater

你可能感兴趣的:(android inflate)