Actually, your RectFrepresenting Pointnot Rectangle, so you cannot see Rect...
RectF rectF = new RectF(left, top, right, bottom);
and there RectFis
RectF rectf = new RectF(200, 400, 200, 400);
here left = right = 200and top = bottom = 400which represents aPoint
Rect width = 200 height = 400, RectF
RectF rectf = new RectF(0, 0, 200, 400);
width = 400 and height = 200, RectF
RectF rectf = new RectF(0, 0, 400, 200);