[android-developers] Android Platform Developer @ Menlo Park, CA

2018-04-24 Thread rishi . nyt
1 New Android System Engineers 2 Keep it low · Strong Knowledge of Android OS Architecture (System, HAL and Framework) · Programming Experience in Linux based System Software · Understanding of Camera, Multimedia Android components · Strong Knowledge of A

[android-developers] Execute c# methods from sql-server

2017-09-22 Thread Rishi Daftary
www.codemahek.com/blog/execute-c-methods-from-sql-server -- You received this message because you are subscribed to the Google Groups "Andro

[android-developers] Re: how to auto answer call programmatically

2016-01-01 Thread rishi vaishnav
is it possible to receive the auto call even if 1 active call is going? On Monday, 14 March 2011 03:14:56 UTC-7, zameer wrote: > > I am working on app that will auto answer the call programatically, > but the API for this is not working in Android2.3, by some initial > investigation came to kno

[android-developers] Question about AccountManager and OAuth authentication with Google App Engine

2012-01-08 Thread Rishi Arora
user should not be asked to provide Google account credentials, as long as there a Google account configured in Android system settings. Many thanks in advance. Rishi. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Re: One User Has a Problem - How do I debug it?

2011-02-28 Thread Rishi Kumar
It would be called like this: ILogService log = DbLogService.getInstance(); log.debug(TAG, "blah blah blah"); Since it talks to a content provider you'll need to declare that in the manifest or you'll need to rewrite it to hit the database directly. Keep in mind that thi

[android-developers] Re: One User Has a Problem - How do I debug it?

2011-02-27 Thread Rishi Kumar
no, its just an interface - the implementation is the DbLogService that i sent you -- 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, sen

[android-developers] Re: One User Has a Problem - How do I debug it?

2011-02-27 Thread Rishi Kumar
no problem man. glad i could 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...@googleg

[android-developers] Re: Listening to call log changes when app is not running

2011-02-27 Thread Rishi Kumar
ah, gotcha. What if you combine the approaches? e.g. register for the broadcast, and then immediate register for content observer in a service? As soon as you get the reply back from the content observer you can perform you work and then terminate the service. -Rishi -- You received

[android-developers] Re: One User Has a Problem - How do I debug it?

2011-02-27 Thread Rishi Kumar
Hey, I attached a couple of our java classes that perform this function. I had to clean up a bit and remove the package names, but i'm sure that won't slow you down :-) here is the database table definition: buf.append("CREATE TABLE ").append(DbMetadata.TABLE_DEBUG ).append("

[android-developers] Re: Maps not working in the android emulator

2011-02-27 Thread Rishi Kumar
tends MapActivity. Is that the case? -rishi -- 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-deve

[android-developers] Re: Listening to call log changes when app is not running

2011-02-27 Thread Rishi Kumar
Hi Tal, Can you register a broadcast receiver that listens to ACTION_PHONE_STATE_CHANGED and then make the check to the CallLog then? You can use this instead of the content observer if it works, so you can avoid making duplicate requests to the call log. -rishi -- You received this

[android-developers] Re: Simple Search App -- Help Required

2011-02-27 Thread Rishi Kumar
/fts3.html - http://bakhtiyor.com/2009/08/sqlite-full-text-search/ - http://stackoverflow.com/questions/4432314/using-sqlite-with-fts-on-android This might take a bit more to setup, but it'll give you a lot of flexibility to add in additional functionality later. thanks Rish

[android-developers] Re: how to show JSON data into list view

2011-02-27 Thread Rishi Kumar
that helps. -rishi -- 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...@googlegrou

[android-developers] Re: Cost of requestLocationUpdates

2011-02-27 Thread Rishi Kumar
Hi Jake, This part of the code isn't well documented, but from my experience, here is how it works. minTime - notify me every X ms of an updated location. minDistance - notify me every X m of an updated location. So let's take an example. I request location updates every 1 hr and every 1k

[android-developers] Re: One User Has a Problem - How do I debug it?

2011-02-27 Thread Rishi Kumar
or we have this done automatically in the case an exception surfaces out of our code). Works pretty well and its fairly easy to setup. Let me know you'd like more details on it. thanks Rishi -- You received this message because you are subscribed to the Google Groups "And

[android-developers] Running Android CTS on an emulator

2010-11-23 Thread rishi
I am running Android Compatibility Test Suite on an emulator, having Android 2.2 (FROYO). I connected the emulator to the CTS using adb tool and started the cts through ./startcts script. Then I ran various test plans like CTS, VM, RefApp and Java, through start --plan CTS command and the same f

[android-developers] Updation of the Media Data base in emulator only on bootup/mount/recording?

2009-02-06 Thread Rishi
When i added a media file to the sdcard an update in the MediaProvider database is not happening. When i bootup the emulator it happens . Is this the expected behaviour ? - Rishi Kaura --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: Usage of MediaScanner while boot up

2009-02-05 Thread Rishi
I got the answer to this. MediaScanner.java is under \android\mydroid \frameworks\base\media\java\android\media and its hidden to the user and is Used from MediaScannerService. Native calls like processDirectory,processFile,.. are used from MediaScanner.java -Rishi Kaura On Feb 5, 4:17 pm

[android-developers] Usage of MediaScanner while boot up

2009-02-05 Thread Rishi
how android fills in the content provider from the sdcard data after bootup. -Rishi Kaura --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Query regarding the Media Provider : android:sharedUserId and android:multiprocess="false"

2009-02-04 Thread Rishi
Thanks Dianne Hackborn for immediate response. So if 3 packages are using the mediacontent provider and one of provided the shared user ID as 'android.media', how many instances of the provider would be available. -Rishi Kaura On Feb 5, 11:39 am, Dianne Hackborn wrote: > android

[android-developers] Query regarding the Media Provider : android:sharedUserId and android:multiprocess="false"

2009-02-04 Thread Rishi
I am a bit confused after looking at the AndroidManifest.xml in the Media provider code of android. It would be great if some one can clarify here: The file has android:sharedUserId="android.media" and android:multiprocess="false" ** From my understanding android:multiprocess="false" indicates th

[android-developers] Re: Sending Intent to specific Activity

2009-01-31 Thread Rishi
broacastreceivers to get such kind of functonality. Note: Receivers are invoked only by a broadcast call! -Rishi Kaura On Jan 9, 9:56 pm, Lutz Schönemann wrote: > Hi, > > I want to create a activity that receivesintentsmodify these and   > send them to an other activity that is also

[android-developers] Re: Add new contacts directly in "My Contacts".

2009-01-30 Thread Rishi
Hi, You can use People.addToMyContactsGroup to add a particular contact you want to be visible in the "My Contacts". e.g., People.addToMyContactsGroup(getContentResolver(), 16); where 16 is the _id of the contact to be visible . Regards, Rishi Kaura On Jan 29, 2:45 pm, DarkJJ wrote

[android-developers] Re: OnTouchListener

2008-10-13 Thread Rishi
You are right! It works fine after returning true in that method. The return statement was generated by eclipse, and I did not pay attention to it. I still don't understand why it acts differently for button. Either way, what appears to have been happening is it does not reach to ACTION_MOVE or

[android-developers] Re: OnTouchListener

2008-10-13 Thread Rishi
Thanks Hackbod! At this point I don't have OnTouchListener set any where other than top layout. So it's pretty simple. My question was more on why OnTouchListener works differently on layout as compared to other widget (say Button). On button, when you try to drag it, you would receive ACTION_DO

[android-developers] OnTouchListener

2008-10-13 Thread Rishi
ON_MOVE or ACTION_UP. Am I missing any thing? I'll really appreciate you help. Thanks, Rishi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

[android-developers] ThreadSafe HTTP Connection

2008-10-13 Thread Rishi
Is there something in android that can be used for thread safe http requests? As I understand ThreadSafeClientConnManager, which is used in apache http client for this purpose, is NOT part of Android SDK. Is there something else in android instead? Thanks, Rishi

[android-developers] Re: HttpClient thread safety?

2008-10-08 Thread Rishi
Is there any recommendation from Android team on how to do thread safe HTTP Connection then? On Sep 8, 3:14 pm, "Mark Murphy" <[EMAIL PROTECTED]> wrote: > > Does anybody know if the version of HttpClient in the Android SDK is > > thread safe? The API documentation ( at > >http://code.google.com/