«

The method findViewById(int) is undefined for the type FragmentHome报错

时间:2024-3-2 18:30     作者:韩俊     分类: Android


很简单的一个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

标签: android

热门推荐