Posted on 2011-08-16 12:53
oathleo 阅读(227)
评论(0) 编辑 收藏 所属分类:
Android
layout在xml里是无法使用findView 找到的
只能使用:
View menu = inflater.inflate(R.layout.main_left_layout, null);
获得LayoutInflater 的方法:
1.Activity
LayoutInflater inflater = getLayoutInflater();
2.
LayoutInflater inflater = LayoutInflater.from(context);