gpt4 book ai didi

android - getWidth() 和 getHeight 在 onMeasure() 之后返回零(特定设备)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:40:41 24 4
gpt4 key购买 nike

我注意到在调用 onMeasure() 之后,我的应用程序 View 为 getWidth() 和 getHeight() 返回 0。这只发生在少数设备上,对于大多数 android 设备,以下代码可以正常工作。我的 checkViewAndLoad() 函数根据 View 的大小加载缩放位图。

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);

Log.d("widthMeasureSpec", Integer.toString(MeasureSpec.getSize(widthMeasureSpec)));
Log.d("heightMeasureSpec", Integer.toString(MeasureSpec.getSize(heightMeasureSpec)));
Log.d("viewWidth", Integer.toString(getWidth()));
Log.d("viewHeight", Integer.toString(getHeight()));

checkViewAndLoad();
}

这是一个设备(摩托罗拉 Droid Razr Maxx)的日志,它在 onMeasure() 之后为 getWidth()/getHeight() 返回零:

09-03 20:55:58.359: D/widthMeasureSpec(29496): 540
09-03 20:55:58.359: D/heightMeasureSpec(29496): 720
09-03 20:55:58.359: D/viewWidth(29496): 0
09-03 20:55:58.359: D/viewHeight(29496): 0

我还尝试手动设置 MeasuredDimensions(),但那只手对日志没有影响。

谁能告诉我这里做错了什么,或者如何在调用 onMeasure() 后获取 SurfaceView 的宽度/高度?

最佳答案

在这里使用 getMeasuredWidth/Height()getWidth/Height() 在布局之后才有效。

关于android - getWidth() 和 getHeight 在 onMeasure() 之后返回零(特定设备),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18605187/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com