当我点击我的按钮应用程序崩溃时,有人可以帮助我

时间:2017-07-14 16:04:06

标签: android

enter image description here当我点击按钮时,我的应用程序崩溃可以有人请查看我的代码有什么问题,我附上截图谢谢你提前enter image description here

3 个答案:

答案 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);