The specified child already has a parent. You must call removeView() on the child's parent first
这个问题的解决方案就是将报错信息重新翻译一遍。就是child已经被分配了一个爹(parent)。不能再有一个爹(parent)了。
解决的方法就是将child中分配的爹给置为null,比如:View view = inflater.inflate(R.layout.fragment_weather, null); null为分配给view的爹
遇到这种问题就是孩子view只能有一个直接的爹