0

私は Android アプリで非常に長い間正常に使用RequestFactoryしてきましたが、現在マップ v2 にアップグレードしようとすると、

<fragment
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment" />

私の XML レイアウト ファイルで、次のエラーが表示されます。

01-25 08:08:41.978: E/AndroidRuntime(19854):
java.lang.RuntimeException: Unable to resume activity{com.xx/com.xx.MyActivity}:
java.lang.RuntimeException: The RequestFactory ValidationTool must be
run for the com.xx.client.MyRequestFactory RequestFactory type

レイアウト XML ファイルからフラグメント コードを削除すると、すべて正常に動作します。

このフラグメントは RequestFactory の検証にどのように影響し、どのように修正できますか?

ありがとう。

4

1 に答える 1

0

How to Use the GWT-RequestFactory in Android SyncAdapter (常に ValidationTool-Error を取得する)で指摘されているように

追加する場合

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

requestFactory = RequestFactorySource.create(factoryClass);

問題は修正されました。

于 2013-01-27T04:26:14.060 に答える