Here you can find the source of measureExactly(View view, int width, int height)
public static void measureExactly(View view, int width, int height)
//package com.java2s; import android.view.View; import android.view.View.MeasureSpec; public class Main { public static void measureExactly(View view, int width, int height) { int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);// w w w. j av a 2s . c om int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY); view.measure(widthSpec, heightSpec); } }