Searched refs:contentView (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/view/src/android/view/cts/ |
D | ActionModeCtsActivity.java | 26 public View contentView; field in ActionModeCtsActivity 32 contentView = new FrameLayout(this); in onCreate() 33 setContentView(contentView); in onCreate()
|
D | ActionModeTest.java | 54 final View view = getActivity().contentView; in testInvalidateContentRectOnFloatingCallsCallback()
|
/cts/tests/tests/app/src/android/app/cts/ |
D | NotificationTest.java | 79 final RemoteViews contentView = new RemoteViews(mContext.getPackageName(), 81 mNotification.contentView = contentView; 104 assertNotNull(result.contentView); 138 mNotification.contentView = null; 143 assertNull(result.contentView); 166 assertNotNull(mNotification.contentView);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | PopupWindowTest.java | 92 TextView contentView = new TextView(mActivity); in testConstructor() local 93 mPopupWindow = new PopupWindow(contentView); in testConstructor() 94 assertSame(contentView, mPopupWindow.getContentView()); in testConstructor() 96 mPopupWindow = new PopupWindow(contentView, 0, 0); in testConstructor() 99 assertSame(contentView, mPopupWindow.getContentView()); in testConstructor() 101 mPopupWindow = new PopupWindow(contentView, 50, 50); in testConstructor() 104 assertSame(contentView, mPopupWindow.getContentView()); in testConstructor() 106 mPopupWindow = new PopupWindow(contentView, -1, -1); in testConstructor() 109 assertSame(contentView, mPopupWindow.getContentView()); in testConstructor() 111 mPopupWindow = new PopupWindow(contentView, 0, 0, true); in testConstructor() [all …]
|