[android-developers] Re: How to return to an auto-started activity

2009-07-07 Thread nleiptv
e description in the DevGuide somehow reads as if the singleTask thing should be enough. Cheers nleiptv On 7 Jul., 10:44, nleiptv wrote: > Hi everyone, > > I have been searching till my fingers bled, so now I decided to ask > here for help. > I have the following problem: > I have w

[android-developers] How to return to an auto-started activity

2009-07-07 Thread nleiptv
a new instance? Any help is greatly appreciated. Thanks nleiptv --~--~-~--~~~---~--~~ 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@goog

[android-developers] Re: Problem with Crypto APIs between Android and SUN Java

2009-06-30 Thread nleiptv
finally pass the modified key to the hmac.init(...) method. This approach works, and I tested it. I will now go and send a bug report. Happy authenticating... :) On 30 Jun., 11:52, nleiptv wrote: > One more thing I just noticed: > > If  you compare k and ks in the following line,

[android-developers] Re: Problem with Crypto APIs between Android and SUN Java

2009-06-30 Thread nleiptv
according to http://forums.sun.com/thread.jspa?threadID=493288 Can anybody confirm that? Would you say that is a bug of the Bouncy Castle implementation? On 30 Jun., 11:40, nleiptv wrote: > Hi, > > I am writing an application that uses Digest MD5 to authenticate a > client (android phone)

[android-developers] Problem with Crypto APIs between Android and SUN Java

2009-06-30 Thread nleiptv
Hi, I am writing an application that uses Digest MD5 to authenticate a client (android phone) to a server (running on SUN Java 1.6.0_02). The authentication, which works fine, if I run the client from a normal computer (not the Dev phone), does not succeed when the client is running on the phone.

[android-developers] Re: start call with intent from browser

2009-06-16 Thread nleiptv
Hi, I am quite a newbie to Android, so chances are there is an easier way to do this, but what I propose should work. Have a look at this project from Android's SVN: http://apps-for-android.googlecode.com/svn/trunk/Samples/WebViewDemo It displays how to use a web view (if you want: a browser view

[android-developers] Re: start call with intent from browser

2009-06-16 Thread nleiptv
Actually I found an easier way: you just create a link like this: wrote: > Hi, > > is it possible to start a call from the android browser, let's say by > clicking a link in an html file or with javascript after a button > click? maybe with help of the gears api? > > i'd appreciate any hints, may