Searched refs:radioGroup (Results 1 – 2 of 2) sorted by relevance
344 MockRadioGroup radioGroup = new MockRadioGroup(mContext); in testOnFinishInflate() local346 radioGroup.check(checkId); in testOnFinishInflate()351 radioGroup.addView(button, new LinearLayout.LayoutParams( in testOnFinishInflate()354 radioGroup.setOnCheckedChangeListener(listener); in testOnFinishInflate()359 radioGroup.onFinishInflate(); in testOnFinishInflate()362 assertEquals(checkId, radioGroup.getCheckedRadioButtonId()); in testOnFinishInflate()364 radioGroup = new MockRadioGroup(mContext); in testOnFinishInflate()366 radioGroup.addView(button, new LinearLayout.LayoutParams( in testOnFinishInflate()369 radioGroup.setOnCheckedChangeListener(listener); in testOnFinishInflate()372 assertEquals(-1, radioGroup.getCheckedRadioButtonId()); in testOnFinishInflate()[all …]
163 public void onCheckedChanged(RadioGroup radioGroup, int checkedId) { in onCheckedChanged() argument