private void initView(Context context) { LayoutInflater inflater=LayoutInflater.from(context); header=inflater.inflate(R.layout.me_listview_header,null); ViewGroup.LayoutParams p=new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT); //this.addView(header,0,p);//这句为什么不可以 this.addHeaderView(header);//这句能正确运行 }
请问为什么注释掉的这句不行。