[android-developers] Sign in to Google Account in Web View

2013-08-09 Thread saran vonteddu
Hi, How to sign-in to Google Account in android Web View using AccountManager or Google Play Service without the need of entering password. Plzz help me.. Regards, Saran -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Problem with windowSoftInputMode=adjustResize in landcape mode

2012-05-18 Thread saran vonteddu
Hi Dear, try giving onConfiguration change in AndroidManifest for that activity. May b it'll work. regards, Saran On Fri, May 18, 2012 at 11:41 AM, Miha Valencic miha.valen...@gmail.comwrote: Kostya, I will try ASAP. I'm currently struggling with adb issue (my sgs2 got OTA update to

Re: [android-developers] Re: how to accept a phone call programmitically

2012-05-17 Thread saran vonteddu
Dear Pent, Now I'm able to accept the call programmatically without user interaction. We can do dat in two ways. One way by implementing ITelephony.aidl. Use the below code in the same package as specified and save as * ITelephony.aidl* * * package com.android.internal.telephony;

Re: [android-developers] How to play audio while in call...

2012-05-17 Thread saran vonteddu
yeah, I already tried playing the audio while in speaker mode, but its not audible clearly. Is there any other way to implement this in android. May be any APIs available to convert text to speech while in call, so that the other party can listen clearly. I don't know, I'm just asking if there

[android-developers] Re: how to accept a phone call programmitically

2012-05-16 Thread saran vonteddu
okay friends, I got it. Its working now. regards Saran On Tue, May 15, 2012 at 6:10 PM, saran vonteddu saran.myw...@gmail.comwrote: Dear *, In my application I want to accept phone call without any user interaction. In order to achieve that I tried using iTelephony.aidl

[android-developers] How to play audio while in call...

2012-05-16 Thread saran vonteddu
Dear *, I'm working on an application in which I should be able to play an audio file while I'm in call. For that I'm using the below code while I'm in call. public void audioPlayer(String path, String fileName){ MediaPlayer mp = new MediaPlayer(); try {

[android-developers] how to accept a phone call programmitically

2012-05-15 Thread saran vonteddu
Dear *, In my application I want to accept phone call without any user interaction. In order to achieve that I tried using iTelephony.aidl, as shown below. package com.android.internal.telephony; interface ITelephony { boolean endCall(); void answerRingingCall();

Re: [android-developers] Customizing Android's default contacts app

2012-05-10 Thread saran vonteddu
Yes it is possible, Suppose if u want to add a new field in ur contact information, u can add the new field in EditContactActivity.java or wat so ever and update the approprite db table and once if you click on save button, you can update the value in the contacts DB. Its as simple as ur working

Re: [android-developers] Re: Cannot answer the incoming call during checking gmail account when user forgot PIN code.

2012-05-10 Thread saran vonteddu
Hi Shruthi, when you click on Sign in btn check the telephony state, and if it is in call state, try to hide progressDialog. May b below code is useful. if (mTelephonyManager.getCallState() != TelephonyManager.CALL_STATE_IDLE) getProgressDialog().hide(); let me know if it is

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread saran vonteddu
HEY ABHILASH..!!! On Wed, Jan 4, 2012 at 3:30 PM, poncho poncho...@gmail.com wrote: Hi, What happen if you try to move the popup before displaying it using the following line? popup.layout( left, top, left + popup.getWidth(), top + popup.getHeight()); /Poncho On 01/04/2012

Re: [android-developers] checkbox checked in listview

2012-01-04 Thread saran vonteddu
Hi vani, Uncheck the other checkboxes, its as simple as it is.. regards, Saran On Tue, Nov 8, 2011 at 4:56 PM, NaveenShrivastva kumarnaveen.si...@gmail.com wrote: http://android-codes-examples.blogspot.com/2011/03/listactivity-with-checkbox-using.html On Tue, Nov 8, 2011 at

[android-developers] How to store AlarmManager object in to shared preference..........

2011-10-11 Thread saran vonteddu
Hi all, I'm working on AlarmClock application. When ever my application is killed due to low memory, I want to retain some objects, so I want to store the instance in SharedPreference so that I can retrieve it whenever I needed. So I want to convert an Object into a String and store

Re: [android-developers] wifi problem

2011-07-05 Thread saran vonteddu
hi vani, Well, when one wifi goes out of range, it will take some time to connect to another wifi depends on wifi strength(fair, poor...). If u want to know more abt this just google it. regards, Saran On Wed, Apr 6, 2011 at 6:57 PM, vani reddy vani.redd...@gmail.com wrote: Hi,