我需要恢復用戶選擇的選項並將其傳遞給另一個活動,我該怎麼做?如何從另一個活動中的RadioGroup中恢復數據?
public class SelectServicesActivity extends AppCompatActivity {
Button btn_seleccion;
RadioGroup radioGroup;
TextView tvServicio1, tvServicio2, tvServicio3;
RadioButton rb1, rb2, rb3;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_services);
radioGroup = (RadioGroup) findViewById(R.id.rg_servicios);
btn_seleccion = (Button) findViewById(R.id.btn_seleccion);
rb1 = (RadioButton) findViewById(R.id.rb1);
rb2 = (RadioButton) findViewById(R.id.rb2);
rb3 = (RadioButton) findViewById(R.id.rb3);
btn_seleccion.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (radioGroup.getCheckedRadioButtonId() == -1)
{
// no radio buttons are checked
Toast.makeText(getApplicationContext(), "Por favor, selecciona una opción", Toast.LENGTH_SHORT).show();
}
else
{
// one of the radio buttons is checked
Intent intent = new Intent (v.getContext(), SelectDayActivity.class);
startActivityForResult(intent, 0);
}
}
});
}}
用戶選擇的選項必須在另一個活動中檢索。
謝謝
我認爲我需要聲明一個字符串變量,你怎麼看? –
您不需要在SelectServicesActivity.class上聲明一個String變量。但在SelectDayActivity.class上,您可以全局聲明字符串selected_option。 –
我編譯了我的代碼,但在第二個活動中未顯示所選項目 –