[android-developers] support for encryption

2008-12-18 Thread sthustfo
Hi, Does the current android SDK provide support for 1. AES-128 encryption 2. MD5 hash computation Thanks in advance. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] Auto attendant

2008-12-16 Thread sthustfo
Hi, With the current state of the API, is it possible to write an auto-attendant application that answers/forwards/rejects a call depending on certain criteria? AFAIK (SDK1.0 rc1), PhoneStateListener can only be used to get a hook into the incoming call, but there is know way to change the state o

[android-developers] getting around Phoneapp activity

2008-12-12 Thread sthustfo
Hi, I have searched through the list for ways to launch my activity when an incoming call comes in using PhoneStateListener. On receiving the CALL_STATE_RINGING in my app, I use an intent to start my new activity. However, my activity gets created, started and stopped. And instead the default Pho

[android-developers] Re: send activity in background

2008-12-12 Thread sthustfo
Hi Dianne, Could you pls be more specific and indicate the method? Is it not 'moveTaskToBack'? Thanks On Fri, Dec 12, 2008 at 3:45 AM, Dianne Hackborn wrote: > There is a method on Activity to send your task to the background. > > On Thu, Dec 11, 2008 at 8:43 AM, sthustfo

[android-developers] Re: send activity in background

2008-12-11 Thread sthustfo
an Intent > and call startActivity(). > > > On Thu, Dec 11, 2008 at 3:17 AM, sthustfo <[EMAIL PROTECTED]> wrote: > > Hi, > > > > How do I send my activity to background when user presses a key? What > should > > I do in the onKeyDown() event handler? Using

[android-developers] send activity in background

2008-12-11 Thread sthustfo
Hi, How do I send my activity to background when user presses a key? What should I do in the onKeyDown() event handler? Using finish() will destroy the activity. public boolean onKeyDown(int keyCode, KeyEvent event) { super.onKeyDown(keyCode, event); // finish();

[android-developers] new activity from PhoneStateListener callback method

2008-12-09 Thread sthustfo
Hi, I would like to know how I can start a new activity from within the PhoneStateListener method, say onCallStateChanged(). I do understand that notifications must be used in general but since my test app deals with voice call, I was thinking of starting an activity. public class MyPhoneStateLi