我是 android 开发的初学者,刚刚获得 metaio SDK 4.5,我想开发一个应用程序,它读取 QR 码(已经由外部 QR 生成器用字符串“metaioman”创建),获取字符串并加载 metaio 的 3D 模型男人。
我一直在修改教程 3,使其只有一个按钮和以下代码:@Override public void onDrawFrame() { super.onDrawFrame();
if (metaioSDK != null)
{
// get all detected poses/targets
TrackingValuesVector poses = metaioSDK.getTrackingValues();
//if we have detected one, attach our metaio man to this coordinate system Id
if (poses.size() != 0)
{
mMetaioMan.setCoordinateSystemID(poses.get(0).getCoordinateSystemID());
}
}
}
所以问题是我应该把poses.get(0).getAdditionalValues()放在哪里来获得QR的等效字符串?还是这个逻辑有缺陷。
提前致谢