Android View Set layoutViewAtPos(View view, int offsetX, int offsetY)

Here you can find the source of layoutViewAtPos(View view, int offsetX, int offsetY)

Description

layout View At Pos

Declaration

public static void layoutViewAtPos(View view, int offsetX, int offsetY) 

Method Source Code

//package com.java2s;

import android.view.View;

public class Main {
    public static void layoutViewAtPos(View view, int offsetX, int offsetY) {
        view.layout(offsetX, offsetY, offsetX + view.getMeasuredWidth(),
                offsetY + view.getMeasuredHeight());
    }/*from www . j  av  a 2  s.  c  o  m*/
}

Related

  1. doAfterLayout(final View view, final Runnable runnable)
  2. initializeDrawListener(View view)
  3. makeMultiline(View view)
  4. measureExactly(View view, int width, int height)
  5. positionAndResizeView(View v, Rect rect)
  6. showCheatSheet(final View view)