getLayoutParams返回null

header = LayoutInflater.from(context).inflate(R.layout.pull_to_refresh,null,true);
headerLayoutParams = (MarginLayoutParams) header.getLayoutParams();

我在做下拉刷新时,直接给我返回null。

后来发现他必须有viewgroup,然后addView(header, 0);了一下,这样就好了


你可能感兴趣的:(getLayoutParams返回null)