Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
EditText editText = (EditText) findViewById(R.id.editText);
String input = editText.getText().toString();
int number = Integer.parseInt(input);
Intent intent = new Intent(this, OtherActivity.class);
intent.putExtra("number", number);
startActivity(intent);
int number = getIntent().getIntExtra("number", 0);