我正在尝试在Arcore中渲染2D图像,但是对于我不得不创建新XML文件的每张单个图像,是否有任何可能的方法可以使它成为动态的'
布局文件
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/planetInfoCard"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/rounded_bg"
android:gravity="center"
android:orientation="vertical"
android:padding="6dp"
android:text="Test"
android:textAlignment="center" />
ViewRenderable
ViewRenderable.builder()
.setView(this, R.layout.test_view)
.build()
.thenAccept(renderable -> testViewRenderable = renderable);
我使用以上代码运行静态图片
任何帮助都是真的