[android-developers] Re: Countries for selling priced applications in Android Market

2009-09-14 Thread nikki
What about Taiwan where HTC the company made the first android phone is from? Definitely many Taiwanese developers including HTC employees are eager to buy and sell on Android market! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Duplicate contacts are read.

2011-12-28 Thread nikki
Hi Group, Please help me, I am trying to read the native phonebook. I have used " Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI,null, null, null, ContactsContract.Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");" to get all the contact ID. Based on the ID I am fetching other de

[android-developers] scrolling list on text enter in edit text.

2011-12-05 Thread nikki
Hi all, I want to implement the feature for my app. I am having a list of contact and an Edittext on top of it. Now when user type some text in the edittext the corresponding matching name should scroll up(as it is done in contact screen) in the list. How and what is best way to do it. Please su

[android-developers] Best approach for onConfiguratinChange()

2011-10-14 Thread nikki
Hi all, I am a bit confused on setting up my screen UI. The point of confusion is I am having similar UI layout file for landscape and portrait. On screen orientation change shall i handle onConfigurationChange or i should let android do the complete activity life cycle and recreating the UI by se

[android-developers] Re: Best approach for onConfiguratinChange()

2011-10-14 Thread nikki
mode it will take the layouts from the "layout-land" folder > and in portrait mode it will take the layouts from the "layout" > folder. > > On Oct 14, 11:11 am, nikki wrote: > > > > > > > > > Hi all, > > > I am a bit confused on s

[android-developers] drawable resolution problem

2012-04-26 Thread nikki
Hi, I am having an image in my drawable and drawable-xhdpi folder. When I run the build on a hdpi device, it picks image from xhdpi folder. I am not able to understand the reason behind it. As per my assumption it should pick from drawable folder. Please help. Thanks -- You received this messa

[android-developers] Significance of "..." in doInBackground(Params...) of AsyncTask

2010-08-29 Thread nikki
Hi Group, I was just going through the document over AsyncTask and came across the notation "..." in the methods of Asynctask (For eg. doInBackground(Params...)). I was a bit excited to know whats the significance of "..." in this notation. Please help Regards Nihkilesh -- You received this m

[android-developers] ant build file for android

2010-09-08 Thread nikki
hi group I need to write ant build file for my project. Do anyone have an idea about how to write ant build file for android. regards -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] Testing a service

2010-08-04 Thread nikki
hi group I am new to android and was trying my hands on instrumentation framework. I searched a lot but haven't found any help on how to test a service. Can anybody help me on how to test a service. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Testing a service

2010-08-04 Thread nikki
Hi group, Do anyone have idea about testing a service using instrumentation framework. -- 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 this group,

[android-developers] Re: Testing a service

2010-08-05 Thread nikki
hi Elk thanks for the reply. I am able to start the service when i specify an implicit intent to start the service but i am not getting any clue on how to start the service with the explicit intent i.e. actually specifying the service class. -- You received this message because you are subscrib

[android-developers] Toast message not displayed

2010-08-05 Thread nikki
hi group i have a service class written which gives notification(Toast dialog) on every life cycle method call back. when i run my application all works well. but when run this service class from my test project the toast message are not displayed. it give the following log for the toast message

[android-developers] Re: Toast message not displayed

2010-08-05 Thread nikki
Coder wrote: > Hi Nikki, >     Toast's need to happen on the main UI thread.  Slightly different > situation, but you may find this thread useful: > > http://groups.google.com/group/android-developers/browse_thread/threa... > > Cheers, > Steve > > On Aug 5, 8:48 

[android-developers] Support for JUint Annotation

2010-08-06 Thread nikki
hi group Do android support JUnit4 annotations like @Test...? -- 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 this group, send email to android-de

[android-developers] Animation on slide drawer

2011-01-10 Thread nikki
Hi Group I created a slide drawer for my application but it doesn't open smoothly as it get close. Is there any way i can add animation effect on opening of my slide drawer..?? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to thi

[android-developers] Re: Out of memory in test application.

2010-10-29 Thread nikki
to see your memory allocations. I am sure it will help > you. > > On Oct 28, 12:32 pm,nikki wrote: > > > Hi Group, > > > I am facing out of memory issue in my test application. > > > I have written 102 test methods(distributed in 7 test classes) for the > > applicat

[android-developers] Re: Out of memory in test application.

2010-10-29 Thread nikki
On Oct 28, 1:57 pm, Kumar Bibek wrote: > Try Traceview to see your memory allocations. I am sure it will help > you. > > On Oct 28, 12:32 pm,nikki wrote: > > > Hi Group, > > > I am facing out of memory issue in my test application. > > > I have written

[android-developers] can we move file from sd card to apllication ?

2010-11-01 Thread nikki
i am developing an application and i am new to android. i would like to know wheather i can import/move text file saved in sdcard of android phone into the database of application developing. i would like to know the code for doing this thing? -- You received this message because you are subscrib

[android-developers] Sending key event to foreground app from background app.

2010-12-07 Thread nikki
Hi Group My query is I have a service running in a separate application process and a activity in another application process running in foreground. Can i send key event from the service to foreground activity. If yes how can i achieve this. Thanks in advance. -- You received this message becau

[android-developers] Sending key event to foreground app from background app.

2010-12-08 Thread nikki
Hi Group, I have a service running in background in one process and an activity in foreground in another application process. I want to sent key events from service to foreground app in another process. Can i achieve this if yes how can i do it. Thanks in advance -- You received this message be

[android-developers] Out of memory in test application.

2010-10-28 Thread nikki
Hi Group, I am facing out of memory issue in my test application. I have written 102 test methods(distributed in 7 test classes) for the application and when it reaches to the execution of second last test method the test application get crash giving "java.lang.OutOfMemory" exception. I have dec

[android-developers] Re: how to DEBUG build an APK?

2010-05-25 Thread nikki
Hi, I just stumbled upon here for I had similar problem that I was trying to figure out how to turn on Config.DEBUG, and I am very glad to share with people had same need: add "TARGET_BUILD_TYPE=debug" after your "make -j4" when you build the entire android source code. Plus I had the same confu