Searched refs:textView2 (Results 1 – 3 of 3) sorted by relevance
410 TextView textView2 = new TextView(mContext); in testBringChildToFront() local415 mMockViewGroup.addView(textView2); in testBringChildToFront()422 assertSame(textView2, mMockViewGroup.getChildAt(0)); in testBringChildToFront()424 mMockViewGroup.bringChildToFront(textView2); in testBringChildToFront()425 assertEquals(mMockViewGroup, textView2.getParent()); in testBringChildToFront()558 TextView textView2 = new TextView(mContext); in testDetachViewsFromParent() local562 mMockViewGroup.addView(textView2); in testDetachViewsFromParent()570 assertNull(textView2.getParent()); in testDetachViewsFromParent()1299 MockTextView textView2 = new MockTextView(mContext); in testMeasureChildren() local1300 textView2.setVisibility(View.GONE); in testMeasureChildren()[all …]
2674 TextView textView2 = new TextView(mActivity); in testOnSaveInstanceState_whenFreezesTextIsFalse() local2675 textView2.setFreezesText(false); in testOnSaveInstanceState_whenFreezesTextIsFalse()2677 textView2.onRestoreInstanceState(textView1.onSaveInstanceState()); in testOnSaveInstanceState_whenFreezesTextIsFalse()2679 assertEquals("", textView2.getText().toString()); in testOnSaveInstanceState_whenFreezesTextIsFalse()2690 TextView textView2 = new TextView(mActivity); in testOnSaveInstanceState_whenFreezesTextIsFalse() local2691 textView2.setFreezesText(false); in testOnSaveInstanceState_whenFreezesTextIsFalse()2692 textView2.setTextIsSelectable(true); in testOnSaveInstanceState_whenFreezesTextIsFalse()2694 textView2.onRestoreInstanceState(textView1.onSaveInstanceState()); in testOnSaveInstanceState_whenFreezesTextIsFalse()2696 assertEquals("", textView2.getText().toString()); in testOnSaveInstanceState_whenFreezesTextIsFalse()2711 TextView textView2 = new TextView(mActivity); in testOnSaveInstanceState_doesNotSaveSelectionWhenDoesNotExist() local[all …]
785 TextView textView2 = (TextView) child2.getChildAt(0); in testSetRemoteAdapter_gridView() local789 assertEquals("Hola", textView2.getText()); in testSetRemoteAdapter_gridView()