我有 :
nameET=(EditText) findViewById(R.id.editText1);
nameET.setText("kkkk");
在Oncreat()函数中,代码给出如下异常:
最佳答案
您得到NullPointerException
所以可能有多种原因。
首先检查您是否已在manifest.xml
中声明了您的活动
其次,检查布局中edittext
的名称是否与editText1
相同。
第三,您在活动的setContentView(R.layout.your layout where you declare your edittext);
方法中调用onCreate(Bundle savedInstanceState)
。
如果以上所有检查均正常,则只需清理项目并运行。这将起作用。
谢谢