Lines Matching refs:center
276 * Assert that the <code>test</code> view is horizontally center aligned
280 * @param test The view that should be center aligned with the reference view
290 int center = (reference.getMeasuredWidth() - test.getMeasuredWidth()) / 2;
293 assertEquals("views are not horizontally center aligned", center, delta);
297 * Assert that the <code>test</code> view is vertically center aligned
301 * @param test The view that should be center aligned with the reference view
311 int center = (reference.getMeasuredHeight() - test.getMeasuredHeight()) / 2;
314 assertEquals("views are not vertically center aligned", center, delta);