一般都这么写setContentView(R.layout.teamsns_feed_detail);
但是有时候需要rootView ,可以改为如下
LayoutInflater layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rootView = layoutInflater.inflate(R.layout.teamsns_feed_detail, null);setContentView(rootView);