Lines Matching full:reference
277 * with respect to the <code>reference</code> view.
279 * @param reference The reference view
280 * @param test The view that should be center aligned with the reference view
282 static public void assertHorizontalCenterAligned(View reference, View test) {
284 reference.getLocationOnScreen(xy);
290 int center = (reference.getMeasuredWidth() - test.getMeasuredWidth()) / 2;
298 * with respect to the <code>reference</code> view.
300 * @param reference The reference view
301 * @param test The view that should be center aligned with the reference view
303 static public void assertVerticalCenterAligned(View reference, View test) {
305 reference.getLocationOnScreen(xy);
311 int center = (reference.getMeasuredHeight() - test.getMeasuredHeight()) / 2;