Я посмотрел руководство на YouTube и сделал то, что показано на видео, но у меня возникла ошибка
Код: Выделить всё
Attempt to invoke virtual method 'java.lang.String android.os.Bundle.getString(java.lang.String)' on a null object reference
Это в разделе «Начало работы».
Код: Выделить всё
continueBtn = findViewById(R.id.continueBtn);
continueBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String Data = accountNameSignup.getText().toString();
Intent intent = new Intent(GettingStarted.this, HomeMenu.class);
intent.putExtra("abc", Data);
startActivity(intent);
finish();
}
});
Код: Выделить всё
accountName = findViewById(R.id.accountName);
Bundle bn = getIntent().getExtras();
String updateName = bn.getString("abc");
accountName.setText(String.valueOf(updateName));
Подробнее здесь: https://stackoverflow.com/questions/701 ... -os-bundle