所以我正在创建这个应用程序,它将数据保存到SD卡上,读取数据并将其放入ListView。我有两个问题。一,我每次添加新文件时列表视图都不会更新,除非我按回并重新打开应用程序。二,当我从最近的菜单中删除应用程序,然后打开它时,我得到一个Null指针异常,如标题中所述。任何帮助,将不胜感激。另外,我是一个完全的初学者。所以请耐心等待我
这是logcat:
java.lang.NullPointerException:尝试从空对象引用上的字段'java.lang.String com.bluetooth.infoshare.infoPerson.firstName'读取 在com.bluetooth.infoshare.ListViewAdapter.getView(ListViewAdapter.java:63)
答案 0 :(得分:0)
问题#2,也许你没有实现活动生命周期
protected void onCreate(Bundle savedInstanceState);
protected void onStart();
protected void onRestart();
protected void onResume();
protected void onPause();
protected void onStop();
protected void onDestroy();
这可能有所帮助:https://developer.android.com/reference/android/app/Activity.html