/* * Copyright (C) 2013 - 2015 Alexander "Evisceration" Martinz * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package org.namelessrom.devicecontrol.modules.flasher; import android.content.Context; import android.view.LayoutInflater; import android.widget.RadioGroup; import org.namelessrom.devicecontrol.R; import org.namelessrom.devicecontrol.models.FlasherConfig; public class FlashOptionCard extends BaseCard { public FlashOptionCard(final Context context) { super(context); LayoutInflater.from(context) .inflate(R.layout.merge_card_flasher_option, getContainer(), true); final int recoveryType = FlasherConfig.get().recoveryType; final RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radio_recovery_group); radioGroup.check(recoveryType == FlasherConfig.RECOVERY_TYPE_OPEN ? R.id.radio_recovery_openrecovery : R.id.radio_recovery_cwm); radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { final int id = group.getCheckedRadioButtonId(); switch (id) { case R.id.radio_recovery_cwm: { FlasherConfig.get().recoveryType = FlasherConfig.RECOVERY_TYPE_CWM; FlasherConfig.get().save(); break; } case R.id.radio_recovery_openrecovery: { FlasherConfig.get().recoveryType = FlasherConfig.RECOVERY_TYPE_OPEN; FlasherConfig.get().save(); break; } } } }); } }