在Android Studio中使用共享首选项来保存测验应用中单选按钮的选中状态,可以按照以下步骤进行操作:
SharedPreferences sharedPreferences = getSharedPreferences("quiz_preferences", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putInt("selected_button_id", radioButton.getId());
editor.apply();
int selectedButtonId = sharedPreferences.getInt("selected_button_id", -1);
if (selectedButtonId != -1) {
RadioButton selectedButton = findViewById(selectedButtonId);
selectedButton.setChecked(true);
}
通过以上步骤,你可以在Android Studio中使用共享首选项来保存测验应用中单选按钮的选中状态。这样,当应用重新启动时,可以恢复用户上次选择的状态。
推荐的腾讯云相关产品:腾讯云移动开发平台(https://cloud.tencent.com/product/mpp)
领取专属 10元无门槛券
手把手带您无忧上云