Created
May 25, 2020 07:18
-
-
Save BMU-Verlag/04f38008b2e8e2dca39bf172b0b1abf5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Intent intent = new Intent(this, Begruessung.class); | |
EditText editText = (EditText) findViewById(R.id.editText); | |
String inhalt = editText.getText().toString(); | |
intent.putExtra(AUSGABE, inhalt); | |
startActivity(intent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment