android inflate

为什么80%的码农都做不了架构师?>>>   hot3.png

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

转载于:https://my.oschina.net/kiloct/blog/149594

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