报错:Attempt to invoke virtual method ‘android.view.View android.widget.EditText.findViewById(int)’

一个非常无语的错:

在这里插入图片描述

 Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.view.View android.widget.EditText.findViewById(int)' on a null object reference
        at com.example.application02_intent.MainActivity.onCreate(MainActivity.java:24)

我服了,找了半天,在网上也查了半天,写的太泛,

我报错的原因:

text1.findViewById(R.id.text11);
发现没? 应该是等号,我写的是链式,关键是也不提示。
在这里插入图片描述
唯一纳闷的就是 为啥 一直是灰色的(没有被调用),低级错误
呜呜┭┮﹏┭┮

正确写法:
 		text1 =  findViewById(R.id.text11);
        text2 =  findViewById(R.id.text22);
        butn1 =  findViewById(R.id.butn1);

这么简单的错我都能犯, 耻辱,奇耻大辱!

在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐