[android-developers] ArrayList in Custom View??

2010-10-10 Thread Dancing Fingers
Hi guys, I'm writing my own custom view, a keyboard, which I think the ArrayList in the keyboard view is causing the application to quit in the emulator. public static ArrayListHexButton hexButtons = new ArrayListHexButton(); The application ran fine when I did setContentView(myKeyboardView);

Re: [android-developers] ArrayList in Custom View??

2010-10-10 Thread Mark Murphy
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your error. On Sat, Oct 9, 2010 at 6:40 AM, Dancing Fingers batym...@gmail.com wrote: Hi guys, I'm writing my own custom view, a keyboard, which I think the ArrayList in the