HomeSort by relevance Sort by last modified time
    Searched refs:radioPreference (Results 1 - 3 of 3) sorted by null

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
LanguageFragment.java 33 import com.android.tv.settings.RadioPreference;
87 final RadioPreference radioPreference = new RadioPreference(themedContext);
88 radioPreference.setKey(languageTag);
89 radioPreference.setPersistent(false);
90 radioPreference.setTitle(localeInfo.getLabel());
91 radioPreference.setRadioGroup(LANGUAGE_RADIO_GROUP);
92 radioPreference.setLayoutResource(R.layout.preference_reversed_widget);
95 radioPreference.setChecked(true)
    [all...]
InputOptionsFragment.java 31 import com.android.tv.settings.RadioPreference;
137 if (preference instanceof RadioPreference) {
138 final RadioPreference radioPreference = (RadioPreference) preference;
139 radioPreference.setChecked(true);
140 radioPreference.clearOtherRadioPreferences(mNamesGroup);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
RadioPreference.java 27 public class RadioPreference extends CheckBoxPreference {
30 public RadioPreference(Context context) {
34 public RadioPreference(Context context, AttributeSet attrs) {
37 context.obtainStyledAttributes(attrs, R.styleable.RadioPreference, 0, 0);
58 if (!(p instanceof RadioPreference)) {
61 final RadioPreference radioPreference = (RadioPreference) p;
62 if (!TextUtils.equals(getRadioGroup(), radioPreference.getRadioGroup())) {
65 if (TextUtils.equals(getKey(), radioPreference.getKey()))
    [all...]

Completed in 314 milliseconds