enter image description here当我点击按钮时,我的应用程序崩溃可以有人请查看我的代码有什么问题,我附上截图谢谢你提前enter image description here
答案 0 :(得分:0)
您还没有分配editText变量。
在MainActivity的第17行写下以下内容: this.editText =(EditText)findViewById(R.id.editText3);
第23行是不必要的。
答案 1 :(得分:0)
您的editText
字段已声明但从未分配。这意味着该行
editText.findViewById(R.id.editText3);
将抛出NullPointerException
。
你打算写
的机会很好editText = (EditText) findViewById(R.id.editText3);
代替。
答案 2 :(得分:0)
您的editText变量为 null
在使用前初始化它:
editText = (EditText) findViewById(R.id.editText3);