String str = TextUtils.join(", ", stringList); // 创建弹窗布局 View popupView = getLayoutInflater().inflate(R.layout.showlist, null); // 获取弹窗布局中的控件 TextView titleView = popupView.findViewById(R.id.title); TextView contentView = popupView.findViewById(R.id.content);java.lang.NullPointerException: Attempt to invoke interface method 'java.util.Iterator java.lang.Iterable.iterator()' on a null object reference at android.text.TextUtils.join(TextUtils.java:385) at com.example.simple2.ui.home.HomeFragment$2.onClink(HomeFragment.java:176)
时间: 2024-02-10 15:33:37 浏览: 156
xwork2.1.6加上了TextUtils.class
3星 · 编辑精心推荐
这个错误提示意味着你在一个空对象上调用了 `iterator()` 方法。在这段代码中,可能是 `stringList` 为空,导致在调用 `join()` 方法时抛出了 `NullPointerException` 异常。你需要检查一下 `stringList` 是否被正确初始化并赋值。如果没有被正确初始化,你需要先初始化它再执行后续的操作。
阅读全文