The method add(Fragment) in the type ArrayList<Fragment> is not applicable for x
时间: 2024-05-31 07:14:31 浏览: 131
Arraylist 的用法
这个错误通常出现在你尝试将一个类型为 x 的对象添加到 ArrayList<Fragment> 中。可能有两种情况:
1. x 不是 Fragment 类型,因此不能添加到 ArrayList<Fragment> 中。请确保你要添加的对象是 Fragment 类型的。
2. x 是 Fragment 类型,但你的 ArrayList 可能是使用泛型限定了其类型,比如 ArrayList<MyFragment>,它只能接受 MyFragment 类型的对象,而不能接受其他类型的 Fragment。请检查你的 ArrayList 类型是否为 ArrayList<Fragment>,如果不是,请将其更改为 ArrayList<Fragment>。
阅读全文