现在的位置: 首页 > 综合 > 正文

LayoutInflater的一点用法记录

2014年02月20日 ⁄ 综合 ⁄ 共 456字 ⁄ 字号 评论关闭

经常用到的引用xml文件,记下来,方便下次查看。

CalendarActivity activity = (CalendarActivity)context;

 LinearLayout headLayout = (LinearLayout) activity.getLayoutInflater().inflate(R.layout.main_header, null);

 LinearLayout ll = (LinearLayout) activity.findViewById(R.id.ll_header);

 LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 View mView= inflater.inflate(R.layout.edit, null);

 LinearLayout ll = (LinearLayout) mView.findViewById(R.id.ll_header);

抱歉!评论已关闭.