I want to pass the content of an edittext to a notification in another .java file. The main part of the code is as follows:
public class HelloAndroid2 extends Activity {
private Button b2;
public Editable etext;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText editText = (EditText)findViewById(R.id.EditText01);
editText.setText("name");
etext = editText.getText();
b2 = (Button) findViewById(R.id.Button02);
b2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
//Toast.makeText(HelloAndroid2.this, editText.getText(), Toast.LENGTH_LONG).show();
Toast.makeText(HelloAndroid2.this, etext, Toast.LENGTH_LONG).show();
}
});
}
}
This should be code for calling the etext variable in my MyService.java file: String MyNotifiyText = etext; What should i do, or how should i call the etext variable in the other .java file?