我正在尝试使用另一个片段中的数据填充Listview。
我能够从另一个片段中获取数据,但是当我尝试创建listview对象时,它返回null。
结果,应用程序崩溃了。
我从一个片段中获取用户的数据,然后从另一个片段调用方法来传递数据。我在第二个方法的poplist()方法中创建listview对象和数组适配器。但是,由于空指针异常,应用程序崩溃。 请帮忙。
public class WishListFragment extends Fragment {
ArrayList<String> wishListTitles = new ArrayList<String>();
View rootView;
ListView wishListView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
Context context = getActivity();
rootView = inflater.inflate(R.layout.fragment_wish_list, container, false);
return rootView;
}
// Another fragment gets the data from user as strings and calls this method
public void popList(String str1, String str2, String str3, Context context)
{
// LibModel is a pojo, I am using its constructor to set the values.
LibModel lm = new LibModel(str1,str2,str3);
Log.w("Title:",lm.getTitle());
Log.w("Author:",lm.getAuthor());
Log.w("Language:",lm.getLang());
wishListTitles.add(lm.getTitle());
// I get this on the log, so the ArrayList is made correctly
Log.w("ArrayList:",wishListTitles.get(0));
// The listView gives Null Pointer exception and crashes the app
wishListView = (ListView) rootView.findViewById(R.id.wl_lv);
ArrayAdapter<String> wishListAdapter = new ArrayAdapter<String>(context,
android.R.layout.simple_list_item_1,wishListTitles);
wishListView.setAdapter(wishListAdapter);
}
}
我尝试了以下内容,但它不起作用
我无法找到一种方法来为listview设置适配器,因为它返回Null。
答案 0 :(得分:1)
我建议在片段中使用数据进行接口回调。还要在包含片段的活动中保留列表视图的引用。 在回调时,将执行接口功能,您可以从那里更新列表视图。