現在、Xamarin.Android(C#)を使用してAndroidアプリケーションを開発中です。Android - NullReferenceExceptionがスクロール/ドラッグアンドドロップで発生する(setDragFocus)
このgistのように、ドラッグ&ドロップオートスクロールリストビューを開発しました。
これは驚くほどうまく機能しますが、ときどき時にはクラッシュしてヒントが得られません。私は本当になぜこれが起こっているあなたは私を伝えることができます疑いがある、多分、ありません
--- End of managed Java.Lang.NullPointerException stack trace ---
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.view.ViewRootImpl.setDragFocus(android.view.View)' on a null object reference
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1454)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewGroup.dispatchDragEvent(ViewGroup.java:1482)
at android.view.ViewRootImpl.handleDragEvent(ViewRootImpl.java:5337)
at android.view.ViewRootImpl.access$600(ViewRootImpl.java:108)
at android.view.ViewRootImpl$ViewRootHandler.handleMessage(ViewRootImpl.java:3464)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:152)
at android.app.ActivityThread.main(ActivityThread.java:5497)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
:例外は、デバッガが表示されていることのみ有用な情報「アンマネージコードに」スローされることは、このスタックトレースです少なくともこれを正しくデバッグするには?
ログ内でさえ、アプリケーションの不具合について何も言わないところがありますが、クラッシュします。ブームとなった。
私はあなたの 'XamarinScrollableListView'を見ましたが、私は何か間違っているとは思わない。あなたは/そのためのテストケースを投稿することができない限り、問題が発生した場所ええ、それはだ – SushiHangover