我希望在从wikitude cloud成功识别图像后在目标图像上显示一个图像。我已经使用了sdk提供的点击wikitude云识别示例代码。如何使用原生android sdk实现这一目标?
答案 0 :(得分:0)
如果您更喜欢使用xml,请尝试以下方法:
EF
如果您使用的是代码,请尝试以下方法:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/image1"/>
<ImageView
android:id="@+id/image2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/image2"/>
</FrameLayout>