Posted on 2011-08-16 12:53
oathleo 閱讀(230)
評論(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);