我试图从一个类调用一个方法到一个活动类,但我在编辑文本上有空指针异常。
// 这是我在方法类中创建的方法
public void getEditTextValue(EditText edittext, int resources, String DataValue , String vEditTextValue) {
methods md = new methods();
edittext = (EditText) findViewById(resources);
vEditTextValue = edittext.getText().toString();
md.editorSharePreferences(this, DataValue, vEditTextValue);
}
// 我在主活动类中调用这个方法,我在类的开头声明了一个公共的 EditText 编辑文本
public EditText edittext;
methods md = new methods();
md.getEditTextValue(currentEmployerMonth, R.id.etTimeWithYourCurrentEmployerMonths, "dCurrentEmployerMonth", vCurrentEmployerMonth);