我知道在设置UI之前我不能太早获得尺寸。
我知道我必须在onCreate()之后获取尺寸。
但是,即使我执行以下操作,他们仍然始终会向我返回0。
onCreate():
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_path);
...
onCreateDone = true;
}
我希望在onSensorChanged()中获得尺寸
// called when sensor values change
public void onSensorChanged(SensorEvent event) { // is roughly called 350 times in 1s
if (layoutSizeNotObtained && onCreateDone) { // only runs once to get the layout size
RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.activity_show_path_relativelayout);
int layoutWidth = relativeLayout.getWidth();
int layoutHeight = relativeLayout.getHeight();
Log.d("ShowPathActivity", "layout size: " + layoutWidth + " " + layoutHeight);
Constant.setInitialX(layoutWidth / 2);
Constant.setInitialY(layoutHeight / 2);
layoutSizeNotObtained = false;
}
....
}
哪里出问题了?
最佳答案
问题是没有保证,布局是在onSensorChanged(SensorEvent event)
调用期间完成的。视图仅在第一次布局期间进行测量,并且在onCreate()
之后的一段时间内完成,但在此期间或之后不进行。
我建议通过this suggestion使用ViewTreeObserver。