[android-developers] Re: GPS Background Service Stops Receiving Updates

2014-11-24 Thread nirm
Try running it in a different process: android:processThe name of the process where the service is to run. Normally, all components of an application run in the default process created for the application. It has the same name as the application package. The application

[android-developers] Emulator Front Face Camera

2011-11-27 Thread nirm
Hi All, Do you know how can i configure in an Emulator the use of front face camera? there is no need for a real pic. 10x Nir -- 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] Re: Regarding User Authentication

2011-07-28 Thread nirm
Hello ListNameValuePair httpparams = new ArrayListNameValuePair(); httpparams .add(new BasicNameValuePair(user, androidUser)); httpparams .add(new BasicNameValuePair(pass, androidpassword)); URI uri = URIUtils.createURI(http, yourUrl, -1, / youractionOrPage, URLEncodedUtils.format(httpparams

[android-developers] Re: Sharing Shared preference

2011-06-01 Thread nirm
Thank u On May 31, 8:27 pm, Dianne Hackborn hack...@android.com wrote: Yes use the Context to open the shared preferences. On Tue, May 31, 2011 at 9:21 AM, nirm nirmi...@gmail.com wrote: Hello all I want to share data between my application and library. Can i share or read from

[android-developers] Sharing Shared preference

2011-05-31 Thread nirm
Hello all I want to share data between my application and library. Can i share or read from one Shared preference? My thoughts: 1. pass the application context to the library? 2. in the lib: read the app shared pref through appContext Is this the right way? Thanks Nir -- You received this

[android-developers] Re: Progress Bar

2011-04-24 Thread nirm
Hi, Thanks for the help -- 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-developers+unsubscr...@googlegroups.com

[android-developers] Progress Bar

2011-04-17 Thread nirm
Hello All I have two questions regarding progress bar view: 1. Can i change Horizontal progress bar color at run time? When i tried it my progress disappeared. 2. Is there a vertical progress bar? I could not find one. Do you recommend changing android.widget.ProgressBar ? (i am not

[android-developers] Re: Progress Bar

2011-04-17 Thread nirm
On Apr 18, 3:40 am, lbendlin l...@bendlin.us wrote: you could implement a custom rotation of the standard progress bar or you could create your own from scratch. Can you give me tips how to create a custom rotation? (never did that) -- You received this message because you are subscribed to

[android-developers] Bitmap Matrix Rotate

2010-12-22 Thread nirm
Hello, I have a bitmap that i want it to rotate all the time. This bitmap is placed in a SurfaceView. My question is: Do i have to create the bitmap every time i want it to rotate? here is my code it is placed is the on draw method: leftMatrix.setRotate(degrees++,

[android-developers] Re: Bitmap Matrix Rotate

2010-12-22 Thread nirm
OK, Thats my question how do i reuse it? Can you provide me an example? Thanks Nir On Dec 22, 9:05 pm, Robert Green rbgrn@gmail.com wrote: No.  Load it once and reuse it, otherwise you will suffer some nasty performance. On Dec 22, 10:35 am, nirm nirmi...@gmail.com wrote: Hello

[android-developers] SMS to Contact

2010-08-24 Thread nirm
Hello all, How can I send a SMS and the contact person will appear in the To input field? Until now I have managed to insert his phone to the To input, but when I send his name or contact id I don’t get the DISPLAY_NAME Intent sendIntent = new Intent(Intent.ACTION_SENDTO);