Searched refs:mZenRadioGroupContent (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/ |
D | ZenDurationDialog.java | 60 @VisibleForTesting protected LinearLayout mZenRadioGroupContent; field in ZenDurationDialog 142 mZenRadioGroupContent = container.findViewById(R.id.zen_radio_buttons_content); in getContentView() 151 mZenRadioGroupContent, false); in getContentView() 153 mZenRadioGroupContent.addView(radioButtonContent); in getContentView() 168 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX), in setupRadioButtons() 170 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), in setupRadioButtons() 172 bindTag(zenDuration, mZenRadioGroupContent.getChildAt(ALWAYS_ASK_CONDITION_INDEX), in setupRadioButtons() 207 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt()
|
D | EnableZenModeDialog.java | 91 protected LinearLayout mZenRadioGroupContent; field in EnableZenModeDialog 150 final int N = mZenRadioGroupContent.getChildCount(); in hideAllConditions() 152 mZenRadioGroupContent.getChildAt(i).setVisibility(View.GONE); in hideAllConditions() 167 mZenRadioGroupContent = container.findViewById(R.id.zen_radio_buttons_content); in getContentView() 177 mZenRadioGroupContent, false); in getContentView() 179 mZenRadioGroupContent.addView(radioButtonContent); in getContentView() 200 if (DEBUG) Log.d(TAG, "bind i=" + mZenRadioGroupContent.indexOfChild(row) + " first=" in bind() 222 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt() 228 bind(forever(), mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX), in bindConditions() 244 bind(c, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), in bindConditions() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | ZenModePanel.java | 121 private LinearLayout mZenRadioGroupContent; field in ZenModePanel 207 mZenRadioGroupContent = findViewById(R.id.zen_radio_buttons_content); in onFinishInflate() 376 mZenRadioGroupContent.addView(rbc); in addZenConditions() 525 bind(forever(), mZenRadioGroupContent.getChildAt(FOREVER_CONDITION_INDEX), 542 bind(c, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), 558 bind(countdown, mZenRadioGroupContent.getChildAt(COUNTDOWN_CONDITION_INDEX), 564 View alarmContent = mZenRadioGroupContent.getChildAt(COUNTDOWN_ALARM_CONDITION_INDEX); 615 return (ConditionTag) mZenRadioGroupContent.getChildAt(index).getTag(); in getConditionTagAt() 621 final int N = mZenRadioGroupContent.getChildCount(); in getVisibleConditions() 623 rt += mZenRadioGroupContent.getChildAt(i).getVisibility() == VISIBLE ? 1 : 0; in getVisibleConditions() [all …]
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/ |
D | EnableZenModeDialogTest.java | 100 mController.mZenRadioGroupContent.getChildAt( in setup() 104 mController.mZenRadioGroupContent.getChildAt( in setup()
|
D | ZenDurationDialogTest.java | 153 View view = mController.mZenRadioGroupContent.getChildAt( in testGetTimeFromBucket()
|