在onCreate()方法中,如果想获得控件的宽度高度,那就要使用下面的方法了。
orderTime.post(new Runnable() { @Override public void run() { System.out.println("高"+orderTime.getHeight()); System.out.println("宽"+orderTime.getWidth()); } });
其中,orderTime是一个TextView。当然,这里只是一个例子,对于其他的View,想要在onCreate()方法中获取到宽高,就需要使用这个方法。
时间: 2024-10-10 05:55:24