0

我试图从一个类调用一个方法到一个活动类,但我在编辑文本上有空指针异常。

// 这是我在方法类中创建的方法

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);    
4

1 回答 1

1

将编辑文本值作为字符串发送并在其他活动中再次获取并指定要分配edittext值的位置

函数(edittext.tostring());

于 2013-02-15T13:22:53.087 回答