I will leave it as my own memo.
・MainActivity.java ・ Activity_main.xml ・SubActivity.java ・ Activity_sub.xml
Added lines 17-24
Button nextButton = findViewById(R.id.bt_next);
nextButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getApplication(),SubActivity.class);
startActivity(intent);
}
});
Added lines 16-22
Button backButton = findViewById(R.id.bt_back);
backButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
Pay attention to the id at the top right of the screen!
Pay attention to the id at the top right of the screen!
Recommended Posts