Home
last modified time | relevance | path

Searched refs:mZenRadioGroupContent (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
DZenDurationDialog.java59 @VisibleForTesting protected LinearLayout mZenRadioGroupContent; field in ZenDurationDialog
141 mZenRadioGroupContent = container.findViewById(R.id.zen_radio_buttons_content); in getContentView()
150 mZenRadioGroupContent, false); in getContentView()
152 mZenRadioGroupContent.addView(radioButtonContent); in getContentView()
167 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX), in setupRadioButtons()
169 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), in setupRadioButtons()
171 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(ALWAYS_ASK_CONDITION_INDEX), in setupRadioButtons()
206 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt()
DEnableZenModeDialog.java90 protected LinearLayout mZenRadioGroupContent; field in EnableZenModeDialog
149 final int N = mZenRadioGroupContent.getChildCount(); in hideAllConditions()
151 mZenRadioGroupContent.getChildAt(i).setVisibility(View.GONE); in hideAllConditions()
166 mZenRadioGroupContent = container.findViewById(R.id.zen_radio_buttons_content); in getContentView()
176 mZenRadioGroupContent, false); in getContentView()
178 mZenRadioGroupContent.addView(radioButtonContent); in getContentView()
199 if (DEBUG) Log.d(TAG, "bind i=" + mZenRadioGroupContent.indexOfChild(row) + " first=" in bind()
221 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt()
227 bind(forever(), mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX), in bindConditions()
243 bind(c, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), in bindConditions()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DZenModePanel.java117 private LinearLayout mZenRadioGroupContent; field in ZenModePanel
203 mZenRadioGroupContent = findViewById(R.id.zen_radio_buttons_content); in onFinishInflate()
372 mZenRadioGroupContent.addView(rbc); in addZenConditions()
521 bind(forever(), mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX),
538 bind(c, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX),
554 bind(countdown, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX),
560 View alarmContent = mZenRadioGroupContent.getChildAt(COUNTDOWN_ALARM_CONDITION_INDEX);
611 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt()
617 final int N = mZenRadioGroupContent.getChildCount(); in getVisibleConditions()
619 rt += mZenRadioGroupContent.getChildAt(i).getVisibility() == VISIBLE ? 1 : 0; in getVisibleConditions()
[all …]
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
DEnableZenModeDialogTest.java100 mController.mZenRadioGroupContent.getChildAt( in setup()
104 mController.mZenRadioGroupContent.getChildAt( in setup()
DZenDurationDialogTest.java153 View view = mController.mZenRadioGroupContent.getChildAt( in testGetTimeFromBucket()