Searched defs:selectedKey (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/network/
H A DNetworkScorerPicker.java116 final String selectedKey = selected.getKey();
117 final boolean success = setActiveScorer(selectedKey);
119 updateCheckedState(selectedKey);
123 private void updateCheckedState(String selectedKey) { argument
130 radioPref.setChecked(TextUtils.equals(pref.getKey(), selectedKey));
/packages/apps/Settings/src/com/android/settings/applications/defaultapps/
H A DDefaultAppPickerFragment.java53 final String selectedKey = selected.getKey();
54 final CharSequence confirmationMessage = getConfirmationMessage(getCandidate(selectedKey));
60 newConfirmationDialogFragment(selectedKey, confirmationMessage);
66 protected void onRadioButtonConfirmed(String selectedKey) { argument
69 selectedKey,
72 super.onRadioButtonConfirmed(selectedKey);
88 protected ConfirmationDialogFragment newConfirmationDialogFragment(String selectedKey, argument
91 fragment.init(this, selectedKey, confirmationMessage);
H A DDefaultAutofillPicker.java84 protected ConfirmationDialogFragment newConfirmationDialogFragment(String selectedKey, argument
88 fragment.init(this, selectedKey, confirmationMessage);
/packages/apps/Settings/src/com/android/settings/widget/
H A DRadioButtonPickerFragment.java84 final String selectedKey = selected.getKey();
85 onRadioButtonConfirmed(selectedKey);
105 protected void onRadioButtonConfirmed(String selectedKey) { argument
106 final boolean success = setDefaultKey(selectedKey);
108 updateCheckedState(selectedKey);
168 public void updateCheckedState(String selectedKey) { argument
176 final boolean newCheckedState = TextUtils.equals(pref.getKey(), selectedKey);
178 radioPref.setChecked(TextUtils.equals(pref.getKey(), selectedKey));

Completed in 140 milliseconds