我是靠谱客的博主 默默画笔,这篇文章主要介绍Caused by: java.lang.NullPointerException: Attempt to invoke virtual method ‘android.view.View andro,现在分享给大家,希望可以做个参考。

日常的出错记录,原因是之前把activity转化成了fragment

转回activity时忘记更改部分代码

错误代码

复制代码
1
2
3
4
5
6
7
8
9
10
11
public class notepad extends AppCompatActivity { ListView listView; List<NotepadBean> list; SQLiteHelper mSQLiteHelper; NotepadAdapter adapter; View view; public void onCreate( Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_notepad); listView = (ListView)view.findViewById(R.id.listview); ImageView add= (ImageView)view.findViewById(R.id.add);

更改后的代码

复制代码
1
2
3
4
5
6
7
8
9
10
public class notepad extends AppCompatActivity { ListView listView; List<NotepadBean> list; SQLiteHelper mSQLiteHelper; NotepadAdapter adapter; public void onCreate( Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_notepad); listView = (ListView)findViewById(R.id.listview); ImageView add= (ImageView)findViewById(R.id.add);

要记得去掉加上的view

最后

以上就是默默画笔最近收集整理的关于Caused by: java.lang.NullPointerException: Attempt to invoke virtual method ‘android.view.View andro的全部内容,更多相关Caused内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(91)

评论列表共有 0 条评论

立即
投稿
返回
顶部