很简单的一个TextView初始化,但是去会报错,解决方法加上view,如下:
View view = inflater.inflate(R.layout.home_index, null);
//获取数据并且显示
topCity = (TextView)findViewById(R.id.index_top_city);
topCity = (TextView)view.findViewById(R.id.index_top_city);
原因就是因为前面新加一个View view.
参考投资:
http://stackoverflow.com/questions/23904272/the-method-findviewbyid-is-undefined-for-the-type-fragment02