public class GetWH extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); View view = getLayoutInflater().inflate(R.layout.main, null); Button button = (Button) view.findViewById(R.id.button2); int width = button.getLayoutParams().width; int height = button.getLayoutParams().height; Log.i("System.out", width + "-----" + height); } }