我对ARCore还是很陌生,希望我的问题不太明显,但是我想知道如何更改imageview上的指令文本,该指令文本默认为“适合要扫描的图像”?我试图将text属性更改为android:text =“ Hello”,但它没有任何改变。
这就是当前的样子:
<ImageView
android:id="@+id/image_view_fit_to_scan"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:contentDescription="@string/fit_image_to_scan"
android:scaleType="fitCenter"
android:src="@drawable/fit_to_scan"
android:visibility="invisible"
android:text="Hello"
android:textColor="#000000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
提前谢谢
亚历克斯