Like this;
@Override
public void onBackPressed(){
Intent result = new Intent();
Spinner rounds = (Spinner)this.findViewById(R.id.CuNumRound);
result.putExtra("ROUNDS", Integer.parseInt((String)rounds.getSelectedItem()));
CheckBox bonus = (CheckBox)this.findViewById(R.id.CuBullBonus);
result.putExtra("BULLBONUS", bonus.isChecked());
setResult(RESULT_OK, result);
super.onBackPressed();
}
0 件のコメント:
コメントを投稿