gpt4 book ai didi

android - 使用 Scenform 将 SceneView 加载到 fragment 中后出现黑屏

转载 作者:行者123 更新时间:2023-12-05 00:10:31 26 4
gpt4 key购买 nike

我正在从事一个项目,该项目将在一个 fragment 中包含一个 3D 模型查看器。为此,我决定使用 sceneform。尝试在我的选项卡 fragment 中显示 SceneView 后,我遇到了问题。

一切都是根据示例和 sceneform 文档完成的,但是 sceneView 显示黑屏,无论我分配的颜色如何。

这是场景加载器

    @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
vw = inflater.inflate(R.layout.fragment_open_gl, container, false);
sceneView = vw.findViewById(R.id.scene_view);
return vw;
}

和 fragment :

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".OpenGL">

<com.google.ar.sceneform.SceneView
android:id="@+id/scene_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Crimson"/>

</FrameLayout>

最佳答案

我通过添加暂停和恢复场景 View 以及 fragment 解决了这个问题:

    @Override
public void onPause() {
super.onPause();
sceneView.pause();
}

@Override
public void onResume() {
super.onResume();
try {
sceneView.resume();
} catch (CameraNotAvailableException e) {
e.printStackTrace();
}
}

关于android - 使用 Scenform 将 SceneView 加载到 fragment 中后出现黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62094527/

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