ViewTreeObserver vto = p_w_picpathView.getViewTreeObserver();

vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

public void onGlobalLayout() {

p_w_picpathView.getViewTreeObserver().removeGlobalOnLayoutListener(this);

int height=p_w_picpathView.getHeight();

int width =p_w_picpathView.getWidth();

}

});