I'm making simple game and I have a game board class that extends Android.View.
Now my problem is that I'm trying to implement the onFling() event but the event never occurs when I implement it into my custom View. onDown(), onLongPress(), and etc all occur through the GestureDetector, but onFling() is the only one that does not occur. Funny thing is if I place the GestureDetector into my Activity, the onFling() event does occur, but just not on in my View. Is there something I need to do to initialize my custom View to recognize the onFling() event through the GestureDetector? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

