Wikitude在扫描图像上创建图像叠加

时间:2016-06-14 05:26:04

标签: android wikitude

我希望在从wikitude cloud成功识别图像后在目标图像上显示一个图像。我已经使用了sdk提供的点击wikitude云识别示例代码。如何使用原生android sdk实现这一目标?

1 个答案:

答案 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>