首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

LayoutInflater加载格局文件

2012-09-22 
LayoutInflater加载布局文件LayoutInflater inflater (LayoutInflater)getSystemService(LAYOUT_INFLATE

LayoutInflater加载布局文件

LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);View layout = inflater.inflate(R.layout.calllog_item, null);TextView tvCallTypeLogo = (TextView)layout.findViewById(R.id.iv_call_type_logo);TextView tvName = (TextView)layout.findViewById(R.id.tv_name);TextView tvNumber = (TextView)layout.findViewById(R.id.tv_number);llPhone.addView(layout, LinearLayout.LayoutParams.FILL_PARENT, 80);

热点排行