gpt4 book ai didi

Android 在 onlayout 方法中调整另一个 View 的大小

转载 作者:行者123 更新时间:2023-11-30 04:39:19 25 4
gpt4 key购买 nike

我遇到了这个问题:我有一个自定义 View 组来处理我在其上渲染相机预览的表面 View 。在 onLayout 方法中,我调整了这个 surfaceView 的大小以正确显示相机。

此自定义 View 组位于我要在相机预览上方渲染的图像后面的相对布局中。

<RelativeLayout android:id="@+id/LinearLayout1"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout android:orientation="vertical" android:id="@+id/linearLayout2" android:layout_alignParentTop="true" android:layout_height="match_parent" android:layout_width="match_parent">
<com.ltu.sdk.LTUCameraView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/CameraView"></com.ltu.sdk.LTUCameraView>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout4"
android:orientation="vertical"
android:layout_alignParentTop="true" android:layout_width="match_parent" android:layout_height="match_parent">
<ImageView android:src="@drawable/frame" android:id="@+id/FrameImage" android:scaleType="fitXY" android:layout_width="match_parent" android:layout_height="match_parent"></ImageView>
</LinearLayout>
</RelativeLayout>

现在我想在调整相机 surfaceView 的大小时调整 FrameImage 的大小,以便图像始终恰好位于相机的顶部。这发生在 onLayout 方法中。我在调整 surfaceView 大小时同时调整 ImageView 的大小(在属性 _viewToUpdate 中):

protected void onLayout(boolean changed, int l, int t, int r, int b) {
/* ... LOTS OF CALCULATIONS ... */

// Center the child SurfaceView within the parent.
if (width * previewHeight > height * previewWidth) {
final int scaledChildWidth = previewWidth * height / previewHeight;
child.layout((width - scaledChildWidth) / 2, 0, (width + scaledChildWidth) / 2, height);
if (_viewToUpdate != null)
_viewToUpdate.layout((width - scaledChildWidth) / 2, 0, (width + scaledChildWidth) / 2, height);
} else {
final int scaledChildHeight = previewHeight * width / previewWidth;
child.layout(0, (height - scaledChildHeight) / 2, width, (height + scaledChildHeight) / 2);
if (_viewToUpdate != null)
_viewToUpdate.layout(0, (height - scaledChildHeight) / 2, width, (height + scaledChildHeight) / 2);
}
if (_viewToUpdate != null) {
Log.e("Salomon", "_viewToUpdate.requestLayout();");
_viewToUpdate.invalidate();
_viewToUpdate.forceLayout();
_viewToUpdate.requestLayout();
}
}
}

现在这有一个令人惊讶的行为:

  • 相机表面 View 在 Activity 启动时正确调整大小
  • FrameImage 调整大小。但是,我确信(感谢日志)_viewToUpdate 不为空。
  • 如果在一秒钟后使用 onClick 事件,我在自定义 ViewGroup 上调用 requestLayout() 以重新计算 surfaceView 和 FrameImage 的大小,它将然后正确地调整 FrameImage 的大小。

我需要根据相机尺寸在 Activity 启动时调整此 FrameImage 的大小。我不明白为什么它不适合我当前的代码...我该怎么办?

最佳答案

你试过吗:

_viewToUpdate.getHandler().post(new Runnable() {
@Override
public void run() {
_viewToUpdate.requestLayout();
}
});

我用这种方法解决了类似的问题。

关于Android 在 onlayout 方法中调整另一个 View 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6278455/

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