[android-developers] JAVA developer

2017-02-21 Thread Ravi Pandit
*Java Developer* * Location: Chicago IL Duration: 6 Months+ Interview: Phone - Skype/F2F* -Should be very Strong in Java - Fundamentals. - Extensive Knowledge and interest in established and emerging J2EE frameworks for Web Services, build, Unit testing, Mocking, Logging is required - Should

[android-developers] Re: How to multi select the GridView Item?

2011-01-25 Thread ravi pandit
Hi Freecom, You can use the technique Listview choicemode.Keep sparse boolean array for your grid view items and on CheckedChange call requestLayout().I hope that will help you. regards, Ravi Pandit PathPartner Tech. On Jan 26, 1:00 am, TreKing treking...@gmail.com wrote: On Fri, Jan 21, 2011

[android-developers] Re: Lost Checked state of check box in ListView while scrolling

2010-10-08 Thread ravi pandit
) On Fri, Oct 8, 2010 at 11:14 AM, ravi pandit rhpan...@gmail.com wrote: Hey,  Its supported from the android ListView .Set CHOICE_MODE and use methods like ((ListView)parent).isItemChecked(position) ((ListView)parent).setItemChecked(position, value) in your getView() or bindView

[android-developers] Re: Lost Checked state of check box in ListView while scrolling

2010-10-07 Thread ravi pandit
Hey, Its supported from the android ListView .Set CHOICE_MODE and use methods like ((ListView)parent).isItemChecked(position) ((ListView)parent).setItemChecked(position, value) in your getView() or bindView() regards, ravi On Oct 7, 1:20 pm, Zsolt Vasvari zvasv...@gmail.com wrote: No, won't

[android-developers] Re: How to compile Android Launcher source code?

2010-09-24 Thread ravi pandit
Hi, For building Launcher you have to make sure the full android source code is built once.Later to build Launcher eexcute 'make Launcher' at the android root directory.It should generate Launcher.apk for you to install. regards, Ravi -The PPite PathPartner Tech On Sep 22, 2:18 pm, Paolo

[android-developers] Re: passing multi dimensional string array between two actvities.

2009-12-01 Thread ravi pandit
dude..just make ur member fields static ..you wud be able to access from any other classes including the one subclassing Activity.. On Dec 1, 3:37 am, TonyDoc tony...@gmail.com wrote: is there a reason you cannot make the array public? On Nov 30, 5:55 am, pavan pavankumar.k...@gmail.com