0
I’m mounting a simulated app and want to call the questions that are in an Activity through another Activity, where have checkbox to select the theme.
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (checkBox.isChecked()) {
SegundaActivity.gerarNvagacao();
Intent intent = new Intent(MainActivity.this, SegundaActivity.class);
startActivity(intent);
}
}
});
Can anyone tell me what to call gerarNavegacao
so that questions are opened when the checkbox is selected?