Re: [android-developers] search box for contacts

2011-07-06 Thread Android K
ate it into your 'working' > project. > > > Hope this helps, > Fred > > On 06/07/2011, Android K wrote: > > Hi, > > I am trying a implement a search box for list of contacts(using list view > > with check boxes) that my app uses. For example: When I type let

[android-developers] search box for contacts

2011-07-06 Thread Android K
Hi, I am trying a implement a search box for list of contacts(using list view with check boxes) that my app uses. For example: When I type letter "A" it should display all the contacts with that letter and let me select multiple of them. What kind of widget should I go for? Is EditText way to go a

[android-developers] Groups and Contacts number.

2011-06-30 Thread Android K
Hi, I was wondering if there is a way to get a group name and all the contacts - name and number in that group. I figured out below how to loop through the groups but I have been unable to tie this to contact names and number. Any help is appreciated. Thanks *final* String[] GROUP_PROJECTION

[android-developers] Re: screen orientation.

2011-06-09 Thread Android K
I meant Dialog box gets stuck and I can't remove the dialog box. On Thu, Jun 9, 2011 at 7:46 PM, Android K wrote: > Hello, > I am trying to control the orientation from which I start. It works fine if > I hold the phone in portrait mode and start my app. Otherwise dialog gets i

[android-developers] screen orientation.

2011-06-09 Thread Android K
Hello, I am trying to control the orientation from which I start. It works fine if I hold the phone in portrait mode and start my app. Otherwise dialog gets if I start in landscape position. Any help is appreciated. Thanks, Harsha *public* *void* onCreate(Bundle savedInstanceState) { *super*

Re: [android-developers] Re: SQLiteDatabase

2011-04-15 Thread Android K
Thanks for the replies. ContentProvider worked for me. On Fri, Apr 15, 2011 at 11:16 AM, lbendlin wrote: > You can use an application object to hold the reference to the database. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. >

Re: [android-developers] Re: Android Apps, move apps into phone's memory, or switch them into external memory.

2011-04-15 Thread Android K
I agree. But there should be some benefit of doubt rather than arrogant answers. You don't need to be Android expert to say "Read documentation". On Fri, Apr 15, 2011 at 11:21 AM, Streets Of Boston wrote: > This is a developer forum and most of us do expect that before you ask any > questions th

Re: [android-developers] Re: Android Debugger is DOG Slow

2011-04-15 Thread Android K
I hear you brother! On Fri, Apr 15, 2011 at 1:41 PM, Eric wrote: > > > On Apr 15, 1:23 pm, Mark Murphy wrote: > > > I do not have any > > > watches or breakpoints activated. > > > > Just because *you* don't have anything like that activated does not > > mean that the *IDE* is not doing somethin

Re: [android-developers] Eclipse Loan calculator help!

2011-04-15 Thread Android K
What is the error that you get? On Thu, Apr 14, 2011 at 2:06 AM, Jester wrote: > Hello all! > > I'm starting out and new to the development of android applications > and also new to the java programming. I'm trying to make a app that > will allow me to calculate a loan but I am running into som

[android-developers] Content P

2011-04-15 Thread Android K
Hi, With my one week old knowledge of Android I am trying use content provider. I get this exception, it seems to occur if AndroidManifest.xml didn't have it. But my file does have it. Any pointers are appreciated. TIA. Newbie. 04-14 20:15:03.029: ERROR/ActivityThread(637): Failed to find p

Re: [android-developers] WebView in service.

2011-04-15 Thread Android K
Answer to this one is you can't do it. It's not a good idea to run webview in a service. On Tue, Apr 12, 2011 at 9:24 AM, Newbie wrote: > Hi, > I am trying to run the webview.loadurl() in the service. I have > javascript that sends notification to App asynchronously. Is this > possible to do? >

Re: [android-developers] new to andriod

2011-04-15 Thread Android K
http://developer.android.com/guide/basics/what-is-android.html On Thu, Apr 14, 2011 at 8:17 AM, TreKing wrote: > On Wed, Apr 13, 2011 at 5:52 AM, shwet wrote: > >> I wanted to know how can I proceed > > > Read the documentation? > > > ---

[android-developers] SQLiteDatabase

2011-04-13 Thread Android K
Is there a way to access the SQLiteDatabase I have created in my Activity in a service? TIA Newbie -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

Re: [android-developers] Re: problem creating sqllite dabase

2011-04-13 Thread Android K
I have similar question. I have initialized my Database in OnCreate(). But I want to access the db from service. Any help would be appreciated. On Wed, Apr 13, 2011 at 11:44 AM, ABSOLUT wrote: > Many thanks, > > Yes! I had the initialization during the construction and no in my > TabActivity,