读书人

LayoutInflater加载格局文件

发布时间: 2012-09-22 21:54:54 作者: rapoo

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);

读书人网 >移动开发

热点推荐