本文介绍了包括Android地图v2的片段时RequestFactory验证失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经成功地使用 RequestFactory 在我的Andr​​oid应用程序很长一段时间,但现在想升级到地图V2,当我有当

 <片段
        的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
        机器人:ID =@ + ID /图
        机器人:layout_width =match_parent
        机器人:layout_height =match_parent
        类=com.google.android.gms.maps.SupportMapFragment/>

在我的XML布局文件,我得到的错误:

If I remove the fragment code from the layout XML file everything works fine.

How does this fragment affect my RequestFactory validation and how can I fix it?

Thanks.

解决方案

As pointed out in How to Use the GWT-RequestFactory in Android SyncAdapter (always getting ValidationTool-Error)

if one adds

Thread.currentThread().setContextClassLoader(mContext.getClassLoader());

before

requestFactory = RequestFactorySource.create(factoryClass);

the problem is fixed.

这篇关于包括Android地图v2的片段时RequestFactory验证失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 09:06